ASP.NET Validation Controls

Below are types of asp.net validation controls: 1. Required FieldValidator     Ensures user does not left control without data. Reference:  How to: Validate Required Entries for ASP.NET Server Controls. 2. RangeValidator    Check if entered values are in between given upper and lower boundries. Reference:  ...

ASP.Net Page life Cycle Events

Below are ASP.net Page life Cycle Events: 1.PreInit    We can use PreInit event to check IsPostBack property, if it is a new request or is it a postback. Also Master pages, Themes and profile values get set dynamically here. No control data ans control properties values from viewsate is loaded here. 2.Init    This event get raised...

ASP.Net Page Life Cycle

How page life cycle works in asp.net? Page request:             This is a stage before page life cycle starts. This step happens when user sends request for page. ASP.Net decides whether to parse and compile the requested page or just catched verions of page need to be send...