Explain the life cycle of an ASP .NET page.
Latest Answer: 1. Page Request
2. Start
3. Page Initialization
4. Load
5. Validation
6. Postback and event Handling
7. Rendering
8. Unload
For The Page Execution Life Cycle Just Remember SILVER.
S-Start
I-Page Initialization
L-Load
V-Validation
E-Postback ...
In which interface the template of any control like Gridview would Initiate?
Latest Answer: In ItemTemplate Inside TemplateColumn ...
How we can set Different levels of Authentication in .Net?What are the difference between Windows Authenticatin, Passport Authentication and Form Authentication?
Latest Answer: Windows authentication enables you to identify users without creating a custom page. Credentials are stored in the Web server’s local user database or an Active Directory domain. Once identified, you can use the user’s credentials to gain access to ...
What is tooltip class? How it was implemented?
Latest Answer: It is class present in .net which help you to provide a tool tip property to any components if bydefaul they dont have it. Once you drag this add the Tool Tip control to your form they almost all control can get benefit of this property as in all controls ...
explain virtual function in c# with an example
Latest Answer: In C#, a virtual function is always considered to be the root of virtual
dispatch; that is, once C# finds a virtual method, it looks no further up the
inheritance hierarchy. If a new virtual Sort( ) function is introduced into
Window, the runtime ...
When using code behind pages, which library must access file import from asp.net environment
Latest Answer: using System.IO; ...
What type of processing model does ASP.NET stimulate?
Latest Answer: Event-driven ...
What do you mean by Declarative Security and Imperative Security? Explain with an example of usage where you would use them
Latest Answer: Imperative versus Declarative SecurityThe code security can be implemented by either using the Declarative Security or the Imperative Security. Let us now understand how these two differ.Declarative SecurityThis is accomplished by placing security ...
How to alter the rows in a datagrid?
Latest Answer: You can use DataGrid's OnItemCreated and OnItemDataBound events. OnItemCreated event is fired once a row is created but the values are not yet binded.OnItemDataBound will fire for every row that is bounded. You can get the values here for each column ...
How do you post a current page to different ASPx page?
Latest Answer: protected void Page_Load { Response.Redirect("webform.aspx"); ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top