这是我的 html.ActionLink:
@Html.ActionLink("Comment", "Comment", new { id = item.NewsId, title = item.Title + "#disqus_thread" })
它给了我以下网址:
http://localhost:62394/Home/Comment/5008/Iran%20women%20barred%20from%20presidency%23disqus_thread
而不是 "#"
它生成"%23"
我怎样才能确保它变成这样:
`
http://localhost:62394/Home/Comment/5008/Iran%20women%20barred%20from%20presidency#disqus_thread
任何形式的帮助都非常感谢!