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?