Asp.Net 2.0 fixed this with built-in features that allowed us to easily send information from one page to another.Button control has property PostBackUrl that can be set...
State management is the process by which you maintain state and page information over multiple requests for the same or different pages. There are 2...
PreInit: Check for the IsPostBack property to determine whether this is the first time the page is being processed. Create or recreate dynamic controls. Set master page...
Behaving in different ways depending upon input receive is know as polymorphism. i.e. whenever input changes automatically output or behavior also changes. There are basically...
A pointer can have Null value ,int *p=Null means, it is not having any address to point . while reference can't have &p=Null(not allowed).2- address...
Abstraction which denotes/shows the essential characteristics of an object which distinguish it from all other kinds of objects.Ex. Consider a person details.Doctor needs || Interviewer...
Example for Custom validator In Designer aspx <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="Not a even...