如何在我的 asp.net mvc 应用程序中发送此 URL 上的 bool 值
我有这段代码,我正在尝试向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为
你需要一个带有三个参数的操作方法(不完全是下面的,而是类似这样的)
for
you need an action method with three parameters (not exactly the following but something like this)
您是否注册了与您的 global.asax 中的检查相对应的路由密钥?
Have you registered a route key that corresponds to check in your global.asax?