It should occur both at client-side and Server side.By using expression validator control with the specified expression ie.. the regular expression provides the... Read more »
Enable ViewState turns on the automatic state management feature that enables server controls to re-populate their values on a round trip without requiring you to... Read more »
Server.Transfer() : client is shown as it is on the requesting page only, but the all the content is of the requested page. Data can be persist accros the pages... Read more »
The Application_Start event is guaranteed to occur only once throughout the lifetime of the application. It’s a good place to initialize global variables. For... Read more »
The primary advantages of the ViewState feature in ASP.NET are:
1. Simplicity. There is no need to write possibly complex code to store form data between page submissions.
2.... Read more »
You can dump (Kill) the session yourself by calling the method Session.Abandon.
ASP.NET automatically deletes a user’s Session object, dumping its contents, after... Read more »
Use Cookie.Discard property, Gets or sets the discard flag set by the server. When true, this property instructs the client application not to save the Cookie on... Read more »
We have two common properties for every validation controls
1. Control to Validate,
2. Error Message.
Read more »
Permanent cookies are the ones that are most useful. Permanent cookies are available until a specified expiration date, and are stored on the hard disk. The location... Read more »
You can register javascript for controls using Attribtues.Add(scriptname,scripttext) method.
Read more »
Identity is a webconfig declaration under System.web, which helps to control the application Identity of the web applicaton. Which can be at any level (Machine,Site,... Read more »
Templates enable one to apply complicated formatting to each of the items displayed by a control.Repeater control supports five types of templates.HeaderTemplate... Read more »
ASP.NET ViewState is a new kind of state service that developers can use to track UI state on a per-user basis. Internally it uses an an old Web programming trick-roundtripping ... Read more »
The ValidationSummary control allows you to summarize the error messages from all validation controls on a Web page in a single location. The summary can be displayed... Read more »
1) Authentication/Authorization
2) Encryption/Decryption
3) Maintaining web servers outside the corporate firewall. etc.,
Read more »
An inproc is one which runs in the same process area as that of the client giving tha advantage of speed but the disadvantage of stability becoz if it crashes it... Read more »
As their names imply, both HTTP GET and HTTP POST use HTTP as their underlying protocol. Both of these methods encode request parameters as name/value pairs in the... Read more »
The DataGrid provides the means to display a group of records from the data source (for example, the first 10), and then navigate to the “page” containing the... Read more »
Server.Transfer() : client is shown as it is on the requesting page only, but the all the content is of the requested page. Data can be persist across the pages... Read more »
Yes, We can create user app domain by calling on of the following overload static methods of the System.AppDomain class
1. Public static AppDomain CreateDomain(String... Read more »