Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 aspx 页面。在页面上的某些处理中,我使用 javascript 将一些值附加到 url。
Ex: http://localhost:8080/Default.aspx#value1
现在我进行回发,如何获取带有 javascript 附加值(#value1)的 url?
您是否尝试过使用:
request.RawURL
尝试这个 Page.ClientQueryString
Page.ClientQueryString
Request.RawURL 也不起作用,
RawUrl 属性返回不包含网站地址的 URL 部分。
例如在 www.example.com/home/account 中,rawurl 将返回
仅限 /home/account。
您需要在回发之前保留您的网址。