明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

通過事例學(xué)習(xí).net的WebForms技術(shù)(一)

[摘要]通過事例學(xué)習(xí).net的WebForms技術(shù)(一) /* 豆腐制作,都是精品 http://www.asp888.net 豆腐技術(shù)站 如轉(zhuǎn)載 請保留完整版權(quán)信息 */ TextBox: TextBox...
通過事例學(xué)習(xí).net的WebForms技術(shù)(一)
/*
豆腐制作,都是精品
http://www.asp888.net 豆腐技術(shù)站
如轉(zhuǎn)載 請保留完整版權(quán)信息
*/
TextBox:
TextBox 在asp.net中是錄入的控件,他有三種形式,分別對應(yīng)<input type=text>,<input type=password>和<TextArea>
這三個HTML標簽,在asp.net 中,TextBox的定義格式是
<asp:TextBox runat=server id="text1" Text="豆腐技術(shù)站" ...... />

代碼定義方式
<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 中的一個非常非常重要的一個屬性,我們需要利用他來確定我們當前的輸入的類型
他的三種賦值
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的屬性