我正在使用Url.action
类似调用控制器方法,
location.href = '@Url.Action("Display", "Customer", new { username = "abc",name = "abcdef",country = "India",email = "abc@hmail.com",phone = "9456974545"})';
我的控制器方法是,
public void Display(string username, string name, string country, string email, string phone)
{ }
在这种方法中,我只能得到第一个参数 ( username
) 的值。它没有得到传递的其他参数值。所有其他值为空。
请建议我,有什么问题?