如何在我的 asp.net mvc 应用程序中发送此 URL 上的 bool 值

发布于 2024-10-20 20:05:42 字数 209 浏览 1 评论 0原文

我有这段代码,我正在尝试向 URL 发送另一个 bool 值..

并且它完美地转到 ActionResult

 public virtual ActionResult Index( int? id,bool? check ) {
}

但检查总是获取 null 值?

我做错了什么吗?

谢谢

I have this code I am trying to send one more bool value to the URL..

and its goign to the ActionResult Perfectly

 public virtual ActionResult Index( int? id,bool? check ) {
}

But check allways geting null value?

is that something I am doing wrong?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌化 2024-10-27 20:05:42

因为

RedirectUrl = string.Format( "/BvIndex/Index/{0}/" + check + "?bvIndex-mode=select", iReturn ) 

你需要一个带有三个参数的操作方法(不完全是下面的,而是类似这样的)

 public virtual ActionResult Index( int? id,bool? check, string bvIndex-mode ) {
}

for

RedirectUrl = string.Format( "/BvIndex/Index/{0}/" + check + "?bvIndex-mode=select", iReturn ) 

you need an action method with three parameters (not exactly the following but something like this)

 public virtual ActionResult Index( int? id,bool? check, string bvIndex-mode ) {
}
玩物 2024-10-27 20:05:42

您是否注册了与您的 global.asax 中的检查相对应的路由密钥?

Have you registered a route key that corresponds to check in your global.asax?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文