<< < 1 2 3 4 >   Sort: Date

What is AppSetting Section in “Web.Config” file
What is AppSetting Section in “Web.Config” file ? Web.config file defines configuration for a webproject. Using “AppSetting” section we can define user defined values. Example below defined is “ConnectionString” section which will be used through out the project for database connection. &lt;co...
2007-10-24, 4851👍, 0💬

ASP used STA threading model, what is the threading model used for ASP.NET
ASP used STA threading model, what is the threading model used for ASP.NET ? ASP.NET uses MTA threading model.
2007-10-24, 4844👍, 0💬

How do I sign out in forms authentication
How do I sign out in forms authentication ? FormsAuthentication.Signout()
2007-10-24, 4804👍, 0💬

Passport authentication
Passport authentication Passport authentication lets you to use Microsoft’s passport service to authenticate users of your application. If your users have signed up with passport, and you configure the authentication mode of the application to the passport authentication, all authentication duties a...
2007-10-24, 4772👍, 0💬

What is the use of @ OutputCache directive in ASP.NET
What is the use of @ OutputCache directive in ASP.NET? It is basically used for caching. See more for Caching chapter.
2007-10-24, 4768👍, 0💬

How do I send email message from ASP.NET
How do I send email message from ASP.NET ? ASP.NET provides two namespaces System.WEB.mailmessage classand System.Web.Mail.Smtpmail class. Just a small homework create a Asp.NET project.
2007-10-24, 4758👍, 0💬

What are the steps to create a windows service in VB.NET
What are the steps to create a windows service in VB.NET? Windows Services are long-running executable applications that run in its own Windows session, which then has the ability to start automatically when the computer boots and also can be manually paused, stopped or even restarted. Following are...
2007-10-24, 4747👍, 0💬

What is Tracing in ASP.NET
What is Tracing in ASP.NET ? Tracing allows us to view how the code was executed in detail.
2007-10-24, 4741👍, 0💬

What is the difference between System.String and System.StringBuilder classes?
Difference between System.String & System.StringBuilder Classes? System.String is immutable; System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed. prefer System.StringBuilder when you are doing lot of string manuplation oper...
2009-03-06, 4727👍, 0💬

How do you upload a file in ASP.NET
How do you upload a file in ASP.NET ? use System.Web.HttpPostedFile class.
2007-10-24, 4727👍, 0💬

How can we kill a user session
How can we kill a user session ? Session.abandon
2007-10-24, 4720👍, 0💬

What is the difference between Server.Transfer and response.Redirect
What is the difference between Server.Transfer and response.Redirect ? Following are the major differences between them:- ? Response.Redirect sends message to the browser saying it to move to some different page, while server.transfer does not send any message to the browser but rather redirects the...
2007-10-24, 4718👍, 0💬

Windows authentication and IIS
Windows authentication and IIS If you select windows authentication for your ASP.NET application, you also have to configure authentication within IIS. This is because IIS provides Windows authentication. IIS gives you a choice for four different authentication methods: Anonymous,basic,digest and wi...
2007-10-24, 4710👍, 0💬

What are the various ways of authentication techniques in ASP.NET
What are the various ways of authentication techniques in ASP.NET? Selecting an authentication provider is as simple as making an entry in the web.config file for the application. You can use one of these entries to select the corresponding built in authentication provider: ã &lt;authentication...
2007-10-24, 4690👍, 0💬

How do we enable tracing
How do we enable tracing ? &lt;%@ Page Trace="true" %>
2007-10-24, 4683👍, 0💬

.NET Remoting versus Distributed COM ?
.NET Remoting versus Distributed COM ? In the past interprocess communication between applications was handled through Distributed COM, or DCOM. DCOM works well and the performance is adequate when applications exist on computers of similar type on the same network. However, DCOM has its drawbacks i...
2009-03-19, 4670👍, 0💬

What is dot Net Remoting?
What is dot Net Remoting? NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication. The applications can be located on the...
2009-03-11, 4670👍, 0💬

Explain the differences between Server-side and Clientside code
Explain the differences between Server-side and Clientside code? Server side code is executed at the server side on IIS in ASP.NET framework, while client side code is executed on the browser.
2007-10-24, 4649👍, 0💬

Where is ViewState information stored
Where is ViewState information stored ? In HTML Hidden Fields.
2007-10-24, 4634👍, 0💬

What are the various modes of storing ASP.NET session ?
.NET INTERVIEW QUESTIONS - What are the various modes of storing ASP.NET session ? * InProc:- In this mode Session state is stored in the memory space of the Aspnet_wp.exe process. This is the default setting. If the IIS reboots or web application restarts then session state is lost. * StateServer:-...
2009-06-02, 4627👍, 0💬

Forms authentication
Forms authentication Forms authentication provides you with a way to handle authentication using your own custom logic with in an ASP.NET application. The following applies if you choose forms authentication. ? When a user requests a page for the application, ASP.NET checks for the presence of a spe...
2007-10-24, 4603👍, 0💬

Can you explain what is remotable and non-remotable objects ?
Can you explain what is remotable and non-remotable objects ? The remotable objects are the objects which can be distributed accross domains, can be used with domain. The non-remotable objects are the objects which can't be distributed accross domains. In distributed system, if an object is very big...
2009-03-19, 4534👍, 0💬

Difference between ASP and ASP.NET
Difference between ASP and ASP.NET? ASP.NET new feature supports are as follows :- Better Language Support ? New ADO.NET Concepts have been implemented. ? ASP.NET supports full language (C#, VB.NET, C++) and not simple scripting like VBSCRIPT.. Better controls than ASP ? ASP.NET covers large set’s o...
2007-10-24, 4504👍, 0💬

What are the steps to follow to use Platform Invoke?
Managed Code and Unmanaged Code related ASP.NET - What are the steps to follow to use Platform Invoke? To use platform invoke, follow the following steps: 1. Import the System.Runtime.InteropServices namespace. 2. Declare the unmanaged procedure using the DllImport attribute or the Declare statement...
2009-03-31, 4401👍, 0💬

<< < 1 2 3 4 >   Sort: Date