FormExtensions.BeginRouteForm 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
BeginRouteForm(HtmlHelper, String, Object, FormMethod, Object)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, object routeValues, System.Web.Mvc.FormMethod method, object htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * obj * System.Web.Mvc.FormMethod * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As Object, method As FormMethod, htmlAttributes As Object) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- routeValues
- Object
一个包含路由参数的对象。 通过检查对象的属性,利用反射检索参数。 此对象通常是使用对象初始值设定项语法创建的。
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
- htmlAttributes
- Object
一个 对象,该对象包含要为 元素设置的 HTML 属性。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, RouteValueDictionary, FormMethod)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Routing.RouteValueDictionary routeValues, System.Web.Mvc.FormMethod method);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Routing.RouteValueDictionary * System.Web.Mvc.FormMethod -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As RouteValueDictionary, method As FormMethod) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- routeValues
- RouteValueDictionary
一个包含路由参数的对象
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, FormMethod, Object)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Mvc.FormMethod method, object htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Mvc.FormMethod * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, method As FormMethod, htmlAttributes As Object) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
- htmlAttributes
- Object
一个 对象,该对象包含要为 元素设置的 HTML 属性。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, FormMethod, IDictionary<String,Object>)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Mvc.FormMethod method, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Mvc.FormMethod * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, method As FormMethod, htmlAttributes As IDictionary(Of String, Object)) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
- htmlAttributes
- IDictionary<String,Object>
一个 对象,该对象包含要为 元素设置的 HTML 属性。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, Object, FormMethod)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, object routeValues, System.Web.Mvc.FormMethod method);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * obj * System.Web.Mvc.FormMethod -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As Object, method As FormMethod) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- routeValues
- Object
一个包含路由参数的对象。 通过检查对象的属性,利用反射检索参数。 此对象通常是使用对象初始值设定项语法创建的。
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, Object)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, object routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As Object) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- routeValues
- Object
一个包含路由参数的对象。 通过检查对象的属性,利用反射检索参数。 此对象通常是使用对象初始值设定项语法创建的。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, FormMethod)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Mvc.FormMethod method);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Mvc.FormMethod -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, method As FormMethod) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
用于获取表单发布 URL 的路由的名称。
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
返回
一个打开 <的窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, RouteValueDictionary)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, System.Web.Routing.RouteValueDictionary routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * System.Web.Routing.RouteValueDictionary -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeValues As RouteValueDictionary) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeValues
- RouteValueDictionary
一个包含路由参数的对象
返回
一个开始 <窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
要用于获取表单发布 URL 的路由的名称。
返回
一个开始 <窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, Object)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, object routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeValues As Object) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeValues
- Object
一个包含路由参数的对象。 通过检查对象的属性,利用反射检索参数。 此对象通常是使用对象初始值设定项语法创建的。
返回
一个开始 <窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, RouteValueDictionary, FormMethod, IDictionary<String,Object>)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Routing.RouteValueDictionary routeValues, System.Web.Mvc.FormMethod method, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Routing.RouteValueDictionary * System.Web.Mvc.FormMethod * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As RouteValueDictionary, method As FormMethod, htmlAttributes As IDictionary(Of String, Object)) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
要用于获取表单发布 URL 的路由的名称。
- routeValues
- RouteValueDictionary
一个包含路由参数的对象
- method
- FormMethod
用于处理窗体的 HTTP 方法(GET 或 POST)。
- htmlAttributes
- IDictionary<String,Object>
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
一个开始 <窗体> 标记。
适用于
BeginRouteForm(HtmlHelper, String, RouteValueDictionary)
将开始 <窗体> 标记写入响应。 在用户提交窗体时,将由路由目标处理该请求。
public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Routing.RouteValueDictionary routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Routing.RouteValueDictionary -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As RouteValueDictionary) As MvcForm
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- routeName
- String
要用于获取表单发布 URL 的路由的名称。
- routeValues
- RouteValueDictionary
一个包含路由参数的对象
返回
一个开始 <窗体> 标记。