问题描述
asp.netmvc4cshtml后缀,把sql查到的字段ID绑定到页面上,点击button删除相对应字段ID.代码这样写的,所有的字段ID能在页面显示出来,但就是删除功能不好使!List<DataRow>row=BLL.Group.SystemGroup.GetSystemGroup();TempData["Gid"]=(fromcinrowselectc["Group_ID"]).Distinct().ToList();
解决方案
解决方案二:
删除功能怎么写的呢
解决方案三:
publicboolDelete(intGid){stringstrSql="deletefromT_SYS_GROUPwhereGroup_ID="+Gid;inti=SqlHelper.ExecuteNonQuery(SqlHelper.constr,strSql);if(i>0)returntrue;elsereturnfalse;}然后准备点击button调用这个方法
解决方案四:
publicboolDelete(intGid){stringstrSql="deletefromT_SYS_GROUPwhereGroup_ID="+Gid;inti=SqlHelper.ExecuteNonQuery(SqlHelper.constr,strSql);if(i>0)returntrue;elsereturnfalse;}然后准备点击button调用这个方法
解决方案五:
调用方法呢,怎么从cshtml调用你的Delete方法的?TempData表示只會從某個要求保存到下一個要求的一組資料
解决方案六:
cshtml页面:$.post('/xxxx/deletebyid',{'id':id},function(data){删除成功后,想样都行});