1

我正在制作一个门户网站,但我对链接的使用有点困惑。问题是。

我的应用程序在http://localhost/applicacion/default.aspx (应用程序是应用程序目录)

如果我放一个链接<a href="../Admin/defaultadmin.aspx">Link</a>,它会带我去

http://localhost/Admin/defaultadmin.aspx  instead of take me to ---> http://localhost/applicacion/Admin/defaultadmin.aspx

然后我尝试使用 Link 它需要我

http://localhost/applicacion/Admin/defaultadmin.aspx but if i am in another part of the site like http://localhost/applicacion/sales/defaultsales.aspx it takes me to 
http://localhost/applicacion/sales/Admin/defaultadmin.aspx witchs is wrong !!

什么是正确的组合,所以链接总是把我带到同一点,记住应用程序目录可以在安装中更改,所以部分必须是动态的,我的意思是我不能放入链接<a href="Application/Admin/defaultadmin.aspx">Link</a>,因为用户可以安装它在另一个网站。

谢谢 !!

4

1 回答 1

2

您声明通过以下方式转到父目录../

<a href="../Admin/defaultadmin.aspx">Link</a>

如果要转到子目录,则省略../并仅使用子目录的名称,后跟所需的页面:

<a href="Admin/defaultadmin.aspx">Link</a>
于 2012-07-18T15:59:17.750 回答