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.
我是asp.net 世界的新人。刚开始我在 asp.net 中的第一个项目。我在几个示例中看到了以下代码 -
<a href="~/folder/page.aspx">A Link</a>
这里的“~”符号有什么用?
感谢你在期待。
这意味着您的应用程序的根。
大多数情况下,您在整个域上运行您的应用程序,以便您可以参考~/,这意味着http://www.example.com/但您也可以设置一个论坛,该论坛将被设置为一个应用程序,/forum/然后如果您在其中说~/,这意味着http://www.example.com/forum/.
~/
http://www.example.com/
/forum/
http://www.example.com/forum/
它的意思是你的应用程序的根。其余部分表示,有一个文件夹,有名字folder,这个文件夹包含page.aspx
folder
page.aspx