ASP .NET 面试题与答案
Question: Suppose you want a certain ASP.NET function executed on MouseOver for a certain button.Where do you add an event handler?Answer: Add an OnMouseOver attribute to the button.Example: btnSubmit.Attributes.Add("onmouseover","someClientCodeHere();"); |
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
这有帮助吗? 是 否
用户评价最有帮助的内容:
- 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?