In this article I will explain with an example, how to
Update data into
SQL Server database using ADO.Net in ASP.Net MVC.
Database
I have made use of the following table Customers with the schema as follows.
I have already inserted few records in the table.
Note: You can download the database table SQL by clicking the download link below.
Model
The Model class consists of following properties.
public class CustomerModel
{
public int CustomerId { get; set; }
public string Name { get; set; }
public string Country { get; set; }
}
Namespaces
You will need to import the following namespaces.
using System.Configuration;
using System.Data.SqlClient;
Controller
The Controller consists of following Action methods.
Action method for handling GET operation
Inside this Action method, simply the View is returned.
Action method for handling POST operation
This method accepts CustomerModel class object as a parameter.
Inside the Action Method, the CustomerId, Name and Country fields are fetched from their respective TextBoxes using CustomerModel class object and passed as parameter to SqlCommand object.
The
ExecuteNonQuery function is executed and the records are updated into the
SQL Server database table using
ADO.Net.
Then, the check is performed whether the records are updated or not an appropriate message is set into a
ViewBag object.
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(CustomerModel customer)
{
string query = "UPDATE Customers SET Name=@Name, Country=@Country WHERE CustomerId=@CustomerId";
string constr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
using (SqlConnection con = new SqlConnection(constr))
{
using (SqlCommand cmd = new SqlCommand(query,con))
{
cmd.Parameters.AddWithValue("@CustomerId", customer.CustomerId);
cmd.Parameters.AddWithValue("@Name", customer.Name);
cmd.Parameters.AddWithValue("@Country", customer.Country);
con.Open();
int i = cmd.ExecuteNonQuery();
con.Close();
if (i > 0)
{
ViewBag.Message = "Customer record updated.";
}
else
{
ViewBag.Message = "Customer not found.";
}
}
}
return View();
}
}
View
Inside the View, in the very first line the CustomerModel class is declared as Model for the View.
The View consists of an HTML Form which has been created using the Html.BeginForm method with the following parameters.
ActionName – Name of the Action. In this case the name is Index.
ControllerName – Name of the Controller. In this case the name is Home.
FormMethod – It specifies the Form Method i.e. GET or POST. In this case it will be set to POST.
The View also consists of an HTML Table, which consists of three TextBoxes created using Html.TextBoxFor method and a Submit Button.
Then, the
ViewBag object is checked for NULL and if it is not NULL then, the value of the
ViewBag object is displayed using JavaScript Alert Message Box.
@model Update_Database_MVC.Models.CustomerModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
@using (Html.BeginForm("Index", "Home", FormMethod.Post))
{
<table cellpadding="1" cellspacing="1">
<tr>
<td style="width: 60px">
Id<br />
@Html.TextBoxFor(m => m.CustomerId)
</td>
<td style="width: 150px">
Name<br />
@Html.TextBoxFor(m => m.Name)
</td>
<td style="width: 150px">
Country:<br />
@Html.TextBoxFor(m => m.Country)
</td>
<td style="width: 200px">
<br />
<input type="submit" value="Update" />
</td>
</tr>
</table>
if (ViewBag.Message != null)
{
<scripttype="text/javascript">
window.onload = function () {
alert("@ViewBag.Message");
};
</script>
}
}
</body>
</html>
Screenshot
Downloads