10、Web控件是否支持样式表(CSS)呢? Yes. All Web controls inherit a property named CssClass from the base class System.Web.UI.WebControls.WebControl. The following example defines a CSS class named Input and uses it to modify a TextBox control to display text in red 10-point Verdana type: 支持,所有的Web控件都从基类System.Web.UI.WebControls.WebControl中继承了一个叫做CssClass的属性。 例如: <html> <head> <style> .Input { font: 10pt verdana; color: red; } </style> </head> <body> <form runat="server"> <asp:TextBox CssClass="Input" RunAt="server" /> </form> </body> </html> 11、在ASPX文件中默认导入那些名称空间? ASPX默认导入的名称空间可以直接引用了,使用其它的名称空间就的自行导入了。 默认名称空间  System  System.Collections  System.Collections.Specialized  System.Configuration  System.Text  System.Text.RegularExpressions  System.Web  System.Web.Caching  System.Web.Security  System.Web.SessionState  System.Web.UI  System.Web.UI.HtmlControls  System.Web.UI.WebControls |
正在阅读:ASP.NET14个热点问题解答ASP.NET14个热点问题解答
2004-02-14 09:34
出处:PConline
责任编辑:huangpeidan
键盘也能翻页,试试“← →”键