我注意到当 Page.ResolveClientUrl 使用的页面的 URL 以反斜杠结尾时,它解析为不正确的路径。例如:
http://localhost/Default.aspx
-> Page.ResolveClientUrl("~/Styles/style.css") returns "Styles/style.css" (correct)
http://localhost/Default.aspx\
-> Page.ResolveClientUrl("~/Styles/style.css") returns "../Styles/style.css" (incorrect)
为什么会发生这种情况,如何防止返回不正确的路径?