我有一个发送w,h和id的MyMethod调用。但是,即使我更改名称,h也始终为null。 w和id有值。知道发生了什么事吗?
showDialog('@ Url.Action(“MyMethod”,“MyController”,new {w =“300”,h =“800”,id =“testing”})',“800”,“500”, “Popup Title”,null,callBack);
public ActionResult MyMethod(string w,string h,string id) {
}
答案 0 :(得分:0)
虽然这不会引起您的麻烦,但数字应该保存在数字类型中,试试这个:
showDialog('@Url.Action("MyMethod", "MyController",new { w = 300, h = 800, id = "testing" })', "800", "500", "Popup Title", null, callBack);
public ActionResult MyMethod(int w, int h, string id) {
}