Hi All,
I am creating asp.net application using c#. On my "Master page", i have 4 links and the code is below.
<div id="nav">
<ul>
<li><a href="BasicInfo.aspx?id=1">Employee Information</a></li>
<li><a href="BasicInfo.aspx?id=2">Training Client</a></li>
<li><a href="BasicInfo.aspx?id=3">Agency Client</a></li>
<li><a href="UserManagement/AllUsers.aspx">User Management</a></li>
</ul>
</div>
The problem is, if I click on "AllUsers.aspx", it opens correctly but then if I click on "BasicInfo.aspx", it gives me error message saying that resource doesn't exists. This is because instead of going to BasicInfo.aspx, it goes to "User ...
Go to the complete details ...