这是我的操作方法-
[HttpPost]
[AllowAnonymous]
public ActionResult GlobalSearch(int searchcategory,string CityName,int? page)
{
string categoryName = cobj.GetCategoryNameAsperId(Convert.ToInt32(searchcategory));
string city = CityName;
}
当我尝试使用查询命中我的方法时,它没有命中。
http://localhost:6004/Classified/GlobalSearch?searchcategory=2002&cityName=Bangalore&page=2
任何人都可以帮助我找到我的问题。
答案 0 :(得分:1)
您的GlobalSearch设置为[HttpPost]。您需要将其切换为[HttpGet]