ASP.NET MVC删除操作链接确认

<td>
  <%= Html.ActionLink("Delete","DeleteUser",new RouteValueDictionary(new {uname=item.UserName}),new { onclick = "return confirm('Are you sure you want to delete this User?');" }) %>
    </td>

在Global.asax.cs

routes.MapRoute(
               "DeleteUser","Account.aspx/DeleteUser/{uname}",new { controller = "Account",action = "DeleteUser",uname = "" }
           );

在ActionContorller.cs

public ActionResult DeleteUser(string uname)
{
   //delete user
}

控制器中uname的值正在传递为空字符串(“”).

解决方法

尝试这样:
<%= Html.ActionLink(
    "Delete","Account",new { 
        uname = item.UserName 
    },new { 
        onclick = "return confirm('Are you sure you want to delete this User?');" 
    }
) %>

然后确保生成链接正确:

<a href="/Account.aspx/DeleteUser/foo" onclick="return confirm(&#39;Are you sure you want to delete this User?&#39;);">Delete</a>

另请注意,不推荐使用纯GET动词来修改服务器上的状态.

这是我会推荐你​​的:

[HttpDelete]
public ActionResult DeleteUser(string uname)
{
   //delete user
}

并认为:

<% using (Html.BeginForm(
    "DeleteUser",new { uname = item.UserName },FormMethod.Post,new { id = "myform" })
) { %>
    <%= Html.HttpMethodoverride(HttpVerbs.Delete) %>
    <input type="submit" value="Delete" />
<% } %>

并在一个单独的javascript文件中:

$(function() {
    $('#myform').submit(function() {
        return confirm('Are you sure you want to delete this User?');
    });
});

您也可以考虑添加一个anti forgery token来保护此操作免于CSRF attacks.

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....