ASP.NET TextBox ReadOnly 属性
ASP.NET TextBox ReadOnly 属性
TextBox 控件定义和用法
ReadOnly 属性用于设置或返回能否更改 TextBox 控件中的文本。
如果该属性被设置为 TRUE,则无法更改文本,否则为 FALSE。默认是 FALSE。
语法
<asp:TextBox ReadOnly="TRUE|FALSE" runat="server"/>
实例
下面的实例把 ReadOnly 属性设置为 "TRUE":
<form runat="server">
<asp:TextBox id="tb1" runat="server" ReadOnly="TRUE"
Text="This text is read only" />
</form>
<asp:TextBox id="tb1" runat="server" ReadOnly="TRUE"
Text="This text is read only" />
</form>
演示实例 »
相关文章
- ASP.NET MVC 文件夹
- ASP.NET MVC – 发布
- ASP.NET Web Forms 教程
- ASP.NET ListBox 控件
- WebSecurity IsAuthenticated 属性
- WebSecurity CreateAccount 方法
- WebSecurity UserExists 方法
- HTML Image 2
- HTML Inputbutton
- HTML InputImage
- HTML InputRadiobutton
- HTML Table 2
- ASP.NET HTML 控件 用 的DataList
- ASP.NET HTML 控件Table 2
- ASP.NET HTML 控件 ArrayList RadioButtonList
- C# 实例 使用 Chart 帮助器 根据数据库显示饼图
- ASP.NET Calendar FirstDayOfWeek 属性
- ASP.NET Calendar SelectMonthText 属性
- ASP.NET Calendar SelectorStyle 属性
- ASP.NET Calendar TitleStyle 属性