MVC 表單提交

2022-09-17 01:09:10 字數 1708 閱讀 6317

使用者提交表單

寫法一(推薦)

一,不帶引數

12  

5 @using (html.beginform("

add","

home

",new)) 6

910

二,帶引數

12  

3 @using (html.beginform("

add","

home

",new,formmethod.get)) 4

78

三,程式設計師自己指定乙個路由,來生成乙個action的url。使用html.beginrouteform(...)

不帶引數:

12  

3 4 @using (html.beginrouteform("

default2

")) 5

89

帶引數:

12  

3 4 @using (html.beginrouteform("

default2

",new,formmethod.post)) 5

89

下面是路由規則

1

namespace

2.axd/

"); 89

routes.maproute(

10 name: "

default

",

11 url: "//"

, 12 defaults: new

13);

1415

routes.maproute(

16 name: "

default2

",

17//

注意:為了測試html.beginrouteform,我將這個佔位符與佔位符換了一下位置。我們來檢查一下html.beginrouteform最後生成什麼樣的url?

18 url: "

///"

, 19 defaults: new

20);

21}

22}

23 }

寫法二(不推薦)

不帶引數:

12  

3 @ 45

"text

" name="

username

" />

67 @; 89

帶引數:

12  

3 @,formmethod.post);} 45

"text

" name="

username

" />

67 @; 89

Mvc 提交表單的4種方法全程詳解

一,mvc htmlhelper方法 html.beginform actionname,controllername,method,htmlattributes beginrouteform 方法 htmlhelper,string,object,formmethod 二,傳統form表單acit...

Flex HTTPService 提交表單

方法1 採用urlvariables物件 import mx.controls.alert import mx.rpc.events.resultevent 對提交給後台的引數進行utf 8的編碼處理 方法2 採用,同時也演示了mx state的用法,來自網上 import mx.rpc.event...

html表單提交

用來收集資訊 form中的屬性 action 提交的路徑 method get post提交表單的方式 標籤type屬性的不同的值所表示的含義 text 文字框 value表示文字框中的值 readonly表示唯讀,可以寫readonly或true disable表示標籤不可用,可以寫disable...