⟩ Suppose you want a certain ASP.NET function executed on MouseOver for a certain button. Where do you add an event handler?
Add an OnMouseOver attribute to the button. Example: btnSubmit.Attributes.Add("onmouseover","someClientCodeHere();");
Add an OnMouseOver attribute to the button. Example: btnSubmit.Attributes.Add("onmouseover","someClientCodeHere();");
Explain what a diffgram is, and a good use for one?
If I am developing an application that must accomodate multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
What is the life cycle of an asp.net page?
Explain What is Viewstate?
How can we implement a Identity (SQL Server) call in an asp.net page?
How Dataadapter.fill works?
How do we get only edited/deleted/inserted records from a Dataset?
How do we Sort the data from a Dataset?
Diff between Web User Control and Web Custom Control?