ASP .NET вопросы и ответы для интервью
Вопрос 6. Where do you store the information about the users locale?
System.Web.UI.Page.Culture
Вопрос 7. Whats the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?
CodeBehind is relevant to Visual Studio.NET only.
Вопрос 8. Whats 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.
Вопрос 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();");
Вопрос 10. What data types do the RangeValidator control support?
Integer, String, and Date.
Самое полезное по оценкам пользователей:
- Whats the difference between Response.Write() andResponse.Output.Write()?
- Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.
- What methods are fired during the page load?
- What namespace does the Web page belong in the .NET Framework class hierarchy?
- When during the page processing cycle is ViewState available?