asp.net mvc Html.BeginForm()用法

1、方法概述

 

        // 摘要: 
        //     将 
开始标记写入响应。在用户提交窗体时,将由某个操作方法处理该请求。 // // 参数: // htmlHelper: // 此方法扩展的 HTML 帮助器实例。 // // actionName: // 操作方法的名称。 // // controllerName: // 控制器的名称。 // // routeValues: // 一个包含路由参数的对象。 // // method: // 用于处理窗体的 HTTP 方法(GET 或 POST)。 // // htmlAttributes: // 一个对象,其中包含要为该元素设置的 HTML 特性。 // // 返回结果: // 开始标记。 public static MvcForm BeginForm(this HtmlHelper htmlHelper, string actionName, string controllerName, RouteValueDictionary routeValues, FormMethod method, IDictionary htmlAttributes);


2、实例

 

@using (Html.BeginForm("Index", "Search", @FormMethod.Get, new { id = "mainForm", name = "ma

你可能感兴趣的:(ASP.NET,MVC)