Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

ASP .NET Interview Questions and Answers

Ques 6. Where do you store the information about the user’s locale?

System.Web.UI.Page.Culture

Is it helpful? Add Comment View Comments
 

Ques 7. What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?

CodeBehind is relevant to Visual Studio.NET only.

Is it helpful? Add Comment View Comments
 

Ques 8. What’s a bubbled event?

When you have a complex control, like DataGrid, writing an event processing routine
for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up
their eventhandlers, allowing the main DataGrid event handler to take care of its
constituents.

Is it helpful? Add Comment View Comments
 

Ques 9. 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();");

Is it helpful? Add Comment View Comments
 

Ques 10. What data types do the RangeValidator control support?

Integer, String, and Date.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook