热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

ASP .NET 面试题与答案

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

System.Web.UI.Page.Culture

这有帮助吗? 添加评论 查看评论
 

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

CodeBehind is relevant to Visual Studio.NET only.

这有帮助吗? 添加评论 查看评论
 

问题 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.

这有帮助吗? 添加评论 查看评论
 

问题 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.

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。