我的查询字符串没有达到我的操作方法

时间:2019-01-15 18:31:28

标签: asp.net-mvc query-string

这是我的操作方法-

[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 

任何人都可以帮助我找到我的问题。

enter image description here

1 个答案:

答案 0 :(得分:1)

您的GlobalSearch设置为[HttpPost]。您需要将其切换为[HttpGet]