asp.net-mvc – 如何使用MVC 4制作提交按钮

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何使用MVC 4制作提交按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试编写一个代码,该代码用户输入中获取姓氏和名字,并将值存储在带有MVC4的数据表中.我在Accountcontroller.cs下添加了以下代码

这将创建一个提交按钮.一旦用户单击提交按钮,它就会将用户输入添加到数据集中.

private void button_Click( object sender,EventArgs e) 

{ 
   sqlConnection cs = new sqlConnection("Data Source = FSCOPEL-PC; ....

   sqlDataAdapter da = new sqlDataAdapter();

   da.insertCommand = new sqlCommand(" INSERT INTO TABLE VALUES ( Firstname,Lastname,)
}

我还在logincs.html下添加了以下代码,一旦用户登录,它将创建提交按钮.

<button type="submit" id="btnSave" name="Command" value="Save">Save</button>

解决方法

在MVC中,您必须创建一个表单并将该表单提交给Controller的Action方法.创建表单的语法如下:

视图:

@using (Html.BeginForm("YourActionName","ControllerName"))
{
    @Html.TextBoxFor(m => m.FirstName)
    @Html.TextBoxFor(m => m.LastName)
    <input type="submit" value="Submit Data" id="btnSubmit" />
}

控制器:

public ActionResult YourActionName(UserModel model)
       {
          //some operations goes here
          return View(); //return some view to the user
       }

模型:

public class UserModel
{
   public string FirstName { get; set; }
   public string LastName { get; set; }
}
原文链接:https://www.f2er.com/aspnet/248745.html

猜你在找的asp.Net相关文章