JQuery对ASP.NET MVC数据进行更新删除
作者:Insus.NET 时间:2024-06-05 09:32:05
以前学习ASP.NET MVC时,学习与应用,操作过数据显示,添加,编辑,更新和删除等功能。
很多方法是相通的,看自己是怎样来进行方便,快捷,高效率。
今天Insus.NET写的练习,是直接对绑定在Table的数据进行更新,删除。
在项目中,创建一个实体,也就是说,对数据库时行通信,对数据进行操作:
public IEnumerable<ToolLocation> GetAllToolLocations()
{
sp.ConnectionString = DB.ConnectionString;
sp.Parameters = null;
sp.ProcedureName = "usp_ToolLocation_GetAll";
DataTable dt = sp.ExecuteDataSet().Tables[0];
return dt.ToList<ToolLocation>();
}
public void Update(ToolLocation tl)
{
List<Parameter> param = new List<Parameter>() {
new Parameter("@ToolLocation_nbr", SqlDbType.SmallInt, 2, tl.ToolLocation_nbr),
new Parameter("@LocationName",SqlDbType.NVarChar,-1,tl.LocationName),
new Parameter("@Description",SqlDbType.NVarChar,-1,tl.Description),
new Parameter("@IsActive",SqlDbType.Bit,1,tl.IsActive)
};
sp.ConnectionString = DB.ConnectionString;
sp.Parameters = param;
sp.ProcedureName = "usp_ToolLocation_Update";
sp.Execute();
}
public void Delete(ToolLocation tl)
{
List<Parameter> param = new List<Parameter>() {
new Parameter("@ToolLocation_nbr", SqlDbType.SmallInt, 2, tl.ToolLocation_nbr)
};
sp.ConnectionString = DB.ConnectionString;
sp.Parameters = param;
sp.ProcedureName = "usp_ToolLocation_Delete";
sp.Execute();
}
在项目的控制器中:
创建视图,并绑定数据:
@using Insus.NET.Models;
@model IEnumerable<ToolLocation>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Edit</title>
<link href="~/Content/css/table.css" rel="stylesheet" />
<script src="~/Scripts/jquery-2.2.1.js"></script>
</head>
<body>
<div>
<table>
<tr>
<td>ToolLocation_nbr</td>
<td>LocationName</td>
<td>Description</td>
<td>IsActive</td>
<td></td>
</tr>
@foreach (var tl in Model)
{
<tr>
<td>@tl.ToolLocation_nbr<input id="Hidden1" type="hidden" value="@tl.ToolLocation_nbr" /></td>
<td>@Html.TextBox("LocationName", tl.LocationName)</td>
<td>@Html.TextBox("Description", tl.Description) </td>
<td>@Html.CheckBox("IsActive", tl.IsActive)</td>
<td>
<input class="Update" type="button" title="Update" value="Update" />
</td>
</tr>
}
</table>
</div>
</body>
</html>
Source Code
上面步骤#4的jQuery代码:
运行一下,看看效果:
上面是对数据进行更新的功能,下面的实现,是对Table内的数据删除。
@using Insus.NET.Models;
@model IEnumerable<ToolLocation>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Delete</title>
<link href="~/Content/css/table.css" rel="stylesheet" />
<script src="~/Scripts/jquery-2.2.1.js"></script>
</head>
<body>
<div>
<table>
<tr>
<td>ToolLocation_nbr</td>
<td>LocationName</td>
<td>Description</td>
<td>IsActive</td>
<td></td>
</tr>
@foreach (var tl in Model)
{
<tr>
<td>@tl.ToolLocation_nbr<input id="Hidden1" type="hidden" value="@tl.ToolLocation_nbr" /></td>
<td>@tl.LocationName</td>
<td>@tl.Description</td>
<td>@Html.CheckBox("IsActive", tl.IsActive, new { disabled = "disabled" })</td>
<td>
<input class="Delete" type="button" title="Delete" value="Delete" />
</td>
</tr>
}
</table>
</div>
</body>
</html>
上面标记#4的jQuery代码,即是删除的核心功能:
运行程序,看看删除的效果:
删除成功之后,我们不必重导向,只需要删除这行html即可,来达到:
标签:JQuery,ASP.NET,MVC,数据
0
投稿
猜你喜欢
Python如何设置指定窗口为前台活动窗口
2022-01-22 02:20:02
SQLServer2005混合模式登录配置(用户登录错误18452,233,4064)
2024-01-28 17:47:34
php中-> 、=>、::、$this->四种常见符号使用方法技巧
2023-05-30 07:46:24
Django 中的Timezone 处理操作
2022-01-08 10:23:20
Python爬虫入门案例之回车桌面壁纸网美女图片采集
2022-12-25 19:40:57
自适应网页设计(Responsive Web Design)
2012-05-02 10:49:07
JS组件Form表单验证神器BootstrapValidator
2024-05-10 14:08:59
Python实现屏幕截图的代码及函数详解
2023-06-19 11:30:29
利用Python绘制创意中秋节月饼
2023-02-19 17:52:41
Python 操作Excel-openpyxl模块用法实例
2021-01-20 09:29:34
python中的tcp示例详解
2021-06-21 21:09:46
详解Python如何实现批量为PDF添加水印
2022-06-20 23:33:58
如何利用python实现Simhash算法
2021-06-13 20:12:49
Python缩进和冒号详解
2023-04-21 16:22:11
mac系统安装Python3初体验
2023-11-27 07:33:16
Python中利用原始套接字进行网络编程的示例
2023-06-22 18:02:03
np.dot()函数的用法详解
2023-06-14 02:12:21
一行代码实现Python动态加载依赖
2021-11-22 19:10:39
golang中cache组件的使用及groupcache源码解析
2024-02-07 11:12:25
Python实现视频中添加音频工具详解
2022-06-03 12:32:28