直播中
代碼定義方式
<script language="C#" runat=server>
void AddText(){
TextBox text1=new TextBox();
text1.Text="豆腐技術(shù)站";
。。。。。。
}
</script>
上面是對TextBox的簡單介紹,下面詳細來看看TextBox的一些主要的屬性和他們的使用方法
AccessKey,可以使該TextBox在頁面上通過ALT+[指定鍵]得到焦點:例如:
<asp:TextBox id="TextBox1" Text="豆腐制作 http://www.asp888.net" runat="server"/>
或者:
TextBox1.AccessKey="Y";
Attributes, 給TextBox控件的屬性賦值,比如:
TextBox1.Attributes["maxlength"]="20"; 通過Attributes 可以很方便的給TextBox確定一些在HTML
中很方便的賦值
TextMode 是TextBox 中的一個非常非常重要的一個屬性,我們需要利用他來確定我們當(dāng)前的輸入的類型
他的三種賦值
TextBox1.TextMode=TextBoxMode.SingleLine; //單行輸入框
TextBox1.TextMode=TextBoxMode.MultiLine; //多行輸入框
TextBox1.TextMode=TextBoxMode.Password; //密碼輸入框
Text 是我們存取TextBox的輸入框中數(shù)據(jù)的屬性,他是可讀可寫的
此外,還有一些對于TextBox的外觀屬性的一些控制屬性,比如 Font,ToolTip 等等,因為基本上不存在需要在編程
中控制實現(xiàn),所以 就 沒有在這里詳細講解
Label 是我們在Asp.Net中用來顯示輸出的控件,對于這個空間我們也是仍然有兩種的定義方式
<asp:Label runat=server id="label" Text="豆腐技術(shù)站" ...... />
代碼定義方式
<script language="C#" runat=server>
void AddText(){
Label label1=new Label();
label.Text="豆腐技術(shù)站";
。。。。。。
}
</script>
其中,我們最常用的就是Text的屬性