1
後,我有一個索引行動:更改網址,以獲取行動
[HttpGet]
public ActionResult Index (bool Myparam, ...)
{
if(Myparam)
{
...
}
return View(model);
}
我用Myparam
設定模型的一些價值觀,但我想的是,用戶看不到Myparam
。在知道一些網頁我有RedirectToAction
與Myparam=true
路線值後返回索引頁面的網址是:
http://mysitemainurl.com/Collection/Index?Page=2&Myparam = true&RowCount=5
,我需要顯示的網址是:
http://mysitemainurl.com/Collection/Index?Page=2&RowCount=5
我喜歡來處理它控制器,如果不可能在視圖,如果不可能或者簡單的方式來處理它的客戶端?有人有任何想法嗎?