What are the validation controls?
A set of server controls included with ASP.NET that test user input in HTML and Web server controls for programmer-defined requirements. Validation controls perform... Read more »
A set of server controls included with ASP.NET that test user input in HTML and Web server controls for programmer-defined requirements. Validation controls perform... Read more »
The current property settings of an ASP.NET page and those of any ASP.NET server controls contained within the page. ASP.NET can detect when a form is requested... Read more »
Init() When the page is instantiated, Load() - when the page is loaded into server memory,PreRender () - the brief moment before the page is displayed to the user ... Read more »
Caching is a technique widely used in computing to increase performance by keeping frequently accessed or expensive data in memory. In context of web application,... Read more »
Authentication is the process of validating a user on the credentials (username and password) and authorization performs after authentication. After Authentication... Read more »
@Page: Defines page-specific attributes used by the ASP.NET page parser and compiler. Can be included only in .aspx files <%@ Page AspCompat=”TRUE”... Read more »
Start the DbgClr debugger that comes with the .NET Framework SDK, open the file containing the code you want to debug, and set your breakpoints. Start the ASP.NET... Read more »
No. The section of Machine.config, which holds the master configuration settings for ASP.NET, contains entries that map ASAX files, CONFIG files, and selected ... Read more »
Only if you’re performing a multistep update and want the update to be treated as an atomic operation. Here’s an example: Application.Lock (); Application[”ItemsSold”]... Read more »
MailMessage message = new MailMessage (); message.From = ; message.To = ; message.Subject = “Scheduled Power Outage”; message.Body = “Our servers will be down... Read more »
ASP.NET maps the file name extension VSDISCO to an HTTP handler that scans the host directory and subdirectories for ASMX and DISCO files and returns a dynamically... Read more »
AspCompat is an aid in migrating ASP pages to ASPX pages. It defaults to false but should be set to true in any ASPX file that creates apartment-threaded COM objects–that... Read more »
Server side scripting means that all the script will be executed by the server and interpreted as needed. ASP doesn’t have some of the functionality like sockets,... Read more »
Client-side validation because there is no need to request a server side date when you could obtain a date from the client machine. Read more »
Web Forms are the heart and soul of ASP.NET. Web Forms are the User Interface (UI) elements that give your Web applications their look and feel. Web Forms are similar... Read more »
In earlier versions of IIS, if we wanted to send a user to a new Web page, the only option we had was Response.Redirect. While this method does accomplish our goal,... Read more »
AlternatingItemTemplate Like the ItemTemplate element, but rendered for every other row (alternating items) in the Repeater control. You can specify a different... Read more »
Application_Start,Application_End, Application_AcquireRequestState, Application_AuthenticateRequest, Application_AuthorizeRequest, Application_BeginRequest, Application_Disposed, ... Read more »
Web.config & machine.config both are configuration files.Web.config contains settings specific to an application where as machine.config contains settings to... Read more »
Permanent cookies are available until a specified expiration date, and are stored on the hard disk.So Set the ‘Expires’ property any value greater than DataTime.MinValue... Read more »