Explain the life cycle of an ASP .NET page.
Latest Answer: There are 8 steps
1.Page request
2.Start
3.Page initialization
4.Load
5.Validation
6.Postback event handling
7.Rendering
8.Unload ...
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: This provider allows you to show help massage to user when they hovers the mouse over the control.For using tool tip control, you need to drag and drop component in to the component tray. After that, All of the controls on the form have new property called ...
explain virtual function in c# with an example
Latest Answer: Some Facts about Virtual Keyword1)It is not compulsury to mark the derived/child class function with Override KeyWord while base/parent class contains a virtual method2)Instead of Virtual we can use New Keyword3)We will get a warning if we won't use ...
When using code behind pages, which library must access file import from asp.net environment
Latest Answer: Inherits System.Web.UI.Page ...
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