ASP.NET HtmlInputImage 控件
asp.net htmlinputimage 控件

定義和用法
htmlinputimage 控件用于控制 <input type="image"> 元素。在 html 中,該元素用于創(chuàng)建使用圖像的按鈕,可代替常規(guī)的按鈕。
屬性
屬性 | 描述 |
---|---|
align | 圖像的對齊方式。 |
alt | 供顯示的圖像替代文本。 |
attributes | 返回該元素的所有屬性名稱和值對。 |
border | 元素周圍的邊框的寬度。 |
disabled | 布爾值,指示是否禁用該控件。默認是 false。 |
id | 控件的唯一 id。 |
name | 元素的名稱。 |
onserverclick | 當圖像被點擊時被執(zhí)行的函數(shù)的名稱。 |
runat | 規(guī)定該控件是一個服務(wù)器控件。必須被設(shè)置為 "server"。 |
src | 圖像的源。 |
style | 設(shè)置或返回被應(yīng)用到該控件的 css 屬性。 |
tagname | 返回元素的標簽名。 |
type | 元素的類型。 |
value | 元素的值。 |
visible | 布爾值,指示該控件是否可見。 |
實例
htmlinputimage
在本例中,我們在 .aspx 文件中聲明了兩個 htmlinputimage 控件和一個 htmlgeneric 控件(記得把控件嵌套在 htmlform 控件中)。如果用戶點擊了第一個圖像,則會執(zhí)行 button1 子例程。這個子例程會向 p 元素發(fā)送消息 "you clicked the smiley button!"。如果用戶點擊了第二個圖像,則會執(zhí)行 button2 子例程。這個子例程會向 p 元素發(fā)送消息 "you clicked the angry button!"。

相關(guān)文章
- ASP Cookies
- ASP Application 對象
- ASP ADO
- ASP AtEndOfStream 屬性
- ASP Skip 方法
- ASP SkipLine 方法
- ASP Write 方法
- ASP Attributes 屬性
- ASP Move 方法
- ASP CreateTextFile 方法
- ASP Exists 方法
- ASP Remove 方法
- ASP Status 屬性
- ASP Clear 方法
- ASP Form 集合
- ASP Contents.RemoveAll 方法
- ASP FileExists 方法
- ASP GetBaseName 方法
- ASP GetDrive 方法
- ASP GetTempName 方法