學習目的
或許你會問
或許你還會問
下面來一個一個介紹
一
主要屬性
Text 標簽所顯示的文本
范例
需要注意的是我們不能遺漏runat=
下面看一個完整的例子
<script runat=
void Page_Load()
{
lblMessage
}
</script>
<html>
<head><title>Label
<body>
<form runat=
<asp:Label id=
</form>
</body>
</html>
<script runat=
sub Page_Load
lblMessage
end sub
</script>
<html>
<head><title>Label
<body>
<form runat=
<asp:Label id=
</form>
</body>
</html>
二
主要屬性
Text 控件顯示的文本
MaxLength 文本框可以添加的最多的字符數(多行文本框無效)
ReadOnly 只讀
TextMode 有下面幾個有效值 MultiLine
Rows 指定文本框的垂直尺寸
三
有三種
Button基本上就是Text屬性來設置按鈕上面的文字
ImageButton基本上就是ImageUrl來設置按鈕上圖象的地址
LinkButton基本上就是Text屬性來設置按鈕上的文字
他們三者共同的屬性就是CausesValidation=true/false來設置按鈕提交的表單是不是被檢驗(後面將說到檢驗控件)
他們三者共同的方法就是OnClick就是點擊按鈕的時候觸發的函數
<script runat=
void btnCounter_OnClick(object sender
{
btnCounter
}
</script>
<html>
<head><title>Label
<body>
<form runat=
<asp:Button Text=
</form>
</body>
</html>
<script runat=
sub btn_COunter_OnClick(s as object
btnCounter
end sub
</script>
<html>
<head><title>Label
<body>
<form runat=
<asp:Button Text=
</form>
</body>
</html>
今天就說這三個控件
From:http://tw.wingwit.com/Article/program/net/201311/14786.html