當我點擊以下鏈接:顯示查詢字符串asp.net
<a href="default.aspx/video/?title=I am trying get the string"> hi</a>
它作爲顯示:
http://example.com/default.aspx/title/?title=I%20am%20trying%20get%20the%20string
但我希望它顯示像鏈接:
http://example.com/default.aspx/title/?title=I_am_trying_get_the_string
使用' %20'是空間的URL編碼版本。如果你想用下劃線替換它,那麼你需要在你的代碼中處理它。 – Romoku
@Romoku你好,請你指導我如何做到這一點。 – rahlrokks
'Request.QueryString [「title」]。替換(「_」,「」)' – Romoku