webform(二)基礎(2)

來源:互聯網
上載者:User

標籤:文本   form   應用程式集區   asp   list   檔案選擇   pass   控制項   mit   

aspx網頁是前後端分離的,所有C#代碼全寫在後端,前端只放Html代碼和控制項。這樣比較清晰明了。

一、aspx網頁的元素:

<%@    %>     來提供整個網頁相關的資訊,並且用來設定網頁的相關屬性,。

Langue="C#"   語言:C#

CodeFile="***.aspx.cs"   與網頁關聯的C#代碼檔案

Inherits="Index"   當前 Web Form所繼承的程式碼後置類別

runat="server"  帶有這個屬性的內容是需要應用程式集區進行解析的內容,即和後端代碼相關聯的部分。

<form></form> 表單 標註需要應用程式集區解析的資料的範圍  注意 整個body中只允許有一個form,form中也不允許添加新的form。

二、WebForm控制項

TextBox  文本輸入框 可以輸入文本。

Button   按鈕 可以用於觸發點擊事件  aspx的按鈕有提交功能

Label   文本  可以顯示string類型的資料

CheckBox  複選框

RadioButton  單選框

DropDownList  下拉式清單

Literal   把某段字串直接寫在html頁面裡

 

補充:

表單元素:三大類十二種

一、文本類

<input type="text" />  -   文字框

<input type="password" />   -   密碼框

<input type="hidden" />   -   隱藏欄位

<textarea></textarea>

二、按鈕類

雙擊工具箱中的控制項 可以直接在游標所在位置添加控制項 也可以拖拽添加。

<input type="button" value="按鈕" />  -  普通按鈕

<input type="submit" value="提交" />  -  提交按鈕

<input type="reset" value="重設" />  -  重設按鈕

<input type="image"  />  -  圖片按鈕

三、選擇類

<input type ="radio" value="1" id="ra1"><label for="ra1">男/女</label>  -  單選框

<input type="checkbox" value="1" id="ckb1"><label for="ckb1">漢族</label>  -  複選框

<select>

  <option value="1">選項1</option>  -  下拉式清單

<select>

<input type "file"/>  -  檔案挑選清單

webform(二)基礎(2)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.