TextBox:
TextBox 在中是錄入的控件他有三種形式分別對應<input type=text><input type=password>和<TextArea>
這三個HTML標簽在 中TextBox的定義格式是
<asp:TextBox runat=server id=text Text=豆腐技術站 />
代碼定義方式
<script language=C# runat=server>
void AddText(){
TextBox text=new TextBox();
textText=豆腐技術站;
}
</script>
上面是對TextBox的簡單介紹下面詳細來看看TextBox的一些主要的屬性和他們的使用方法
AccessKey可以使該TextBox在頁面上通過ALT+[指定鍵]得到焦點例如
<asp:TextBox id=TextBox Text=豆腐制作 runat=server/>或者: TextBoxAccessKey=Y;
Attributes 給TextBox控件的屬性賦值比如
TextBoxAttributes[maxlength]=; 通過Attributes 可以很方便的給TextBox確定一些在HTML
中很方便的賦值
TextMode 是TextBox 中的一個非常非常重要的一個屬性我們需要利用他來確定我們當前的輸入的類型
他的三種賦值
TextBoxTextMode=TextBoxModeSingleLine; //單行輸入框
TextBoxTextMode=TextBoxModeMultiLine; //多行輸入框
TextBoxTextMode=TextBoxModePassword; //密碼輸入框
Text 是我們存取TextBox的輸入框中數據的屬性他是可讀可寫的.此外還有一些對於TextBox的外觀屬性的一些控制屬性比如 FontToolTip 等等因為基本上不存在需要在編程中控制實現所以就沒有在這裡詳細講解
Label 是我們在AspNet中用來顯示輸出的控件對於這個空間我們也是仍然有兩種的定義方式
<asp:Label runat=server id=label Text=豆腐技術站 />
代碼定義方式
<script language=C# runat=server>
void AddText(){
Label label=new Label();
labelText=豆腐技術站;
}
</script>
其中我們最常用的就是Text的屬性
From:http://tw.wingwit.com/Article/program/net/201311/13061.html