public ActionResult frmLogin() { return RedirectToAction("Index", " WC_Index"); }
对应的控制器WC_Index Index方法
public ActionResult Index(string name, int? ObjectID = 1) { xxxxx }
这个跳转的方法的参数是这样写对吗?
return RedirectToAction("Index", " WC_Index",“null”);
RedirectToAction("Index","WC_Index",new { ObjectID = 1})
没有参数时
RedirectToAction("Index","WC_Index”)
return RedirectToAction("Index", " WC_Index", new { name = "", ObjectID = 1 }); 没有用啊 朋友
@s_p: ok了不小心写了空格
1 //使用操作名称和控制器名称重定向到指定的操作。 2 RedirectToAction(String, String)
直接:
1 return RedirectToAction("Index", " WC_Index");
是不行滴....
希望大家多多交流:hongtenzone@foxmail.com
我知道不行啊 那个方法有参数