A button in a webform is class or object? If it is object than which is class for that object?
Latest Answer: In ASP each and everything is representated as a class, like the button in the web form is a class. ...
Explain the life cycle of an ASP .NET page.
Latest Answer: Actually ASP.Net page life cycle has two different ways1st one: When we send a http request to the server for a particular page the request will be initially send to a aspx engine and then the aspx engine identifies the page ...
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: ASP.Net uses two ways/techniques of coding pages 1) Inline code2) Code behind 1) In Inline code,code is directly embedded directly within asp.net aspx page.2) In code behind technique we have a seprate class that contains our logic for the asp.net ...
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 ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top