嗨 可以在HTMLHelper擴展方法中訪問查詢字符串。我們需要根據請求中的查詢字符串進行不同的呈現。可以請求從htmlhelper訪問查詢字符串
23
A
回答
36
是的,通過當前的上下文,這是HTML助手的屬性。
public static string DoThis(this HtmlHelper helper)
{
string qs = helper.ViewContext.HttpContext.Request.QueryString.Get("val");
//do something on it
}
5
您可以通過HttpContext對象訪問查詢字符串。像這樣...
string itemVal = System.Web.HttpContext.Current.Request.QueryString["item"];
8
肯定的:
public static MvcHtmlString Foo(this HtmlHelper htmlHelper)
{
var value = htmlHelper.ViewContext.HttpContext.Request["paramName"];
...
}
相關問題
- 1. 從查詢字符串拆分請求
- 2. 可通過HTTP請求訪問WCF,查詢字符串作爲參數
- 3. Ajax請求使用查詢字符串
- 4. Mojolicious websocket請求查詢字符串
- 5. 獲取請求MVC查詢字符串
- 6. GuzzlePHP請求查詢字符串
- 7. 查詢字符串htaccess塊請求
- 8. Node.js beginner-請求無查詢字符串
- 9. SQL - 查詢字符串請求
- 10. 訪問Compojure查詢字符串
- 11. 訪問通過查詢字符串
- 12. 從Flask應用程序訪問原始請求字符串
- 13. 請查詢字符串
- 14. 刪除查詢字符串,並從index.php的請求的URI
- 15. 從抽象控制器請求查詢字符串
- 16. Solr請求處理程序可以修改查詢字符串嗎?
- 17. 關於從URL查詢字符串訪問數據的問題
- 18. 如何訪問「主」從ActionMethod查詢字符串從部分
- 19. 可以從Google Cloud Vision API請求什麼功能字符串
- 20. 傳遞分隔字符串以訪問查詢作爲參數
- 21. 從字符串的查詢問題
- 22. 從查詢字符串,以JSON在JavaScript
- 23. ASP.net MVC檢查查詢字符串參數對所有請求
- 24. 可以查詢請求的數據嗎?
- 25. 從html頁面訪問查詢字符串/參數
- 26. 從Resin訪問日誌中刪除查詢字符串
- 27. 從ReturnUrl訪問額外的查詢字符串鍵
- 28. 訪問多個值從URI /查詢字符串
- 29. 從htmlhelper訪問視圖
- 30. 查詢字符串問題