摘要: 1、指定表单提交方式和路径等 @using (Html.BeginForm("Index", "Home", FormMethod.Get, new { name = "nbform", id = "nbform" }))2、指定表单提交为数据方式 @using (Html.BeginForm("ImportExcel", "Stock", FormMethod.Post, new { enctype = "multipart/form-data" })) 阅读全文
posted @ 2013-08-05 15:31 James·wang 阅读(58149) 评论(8) 推荐(6)