Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Expert,

I am uday satardekar,


In my website, i am using masterpage(mainMaster.master) for uniq look.

In that masterpage i have also included Navigational bar.

like

<li><a href="event/new_event.aspx">New Event</a></li>


I have created new_event.aspx
page in event folder.

Now from home page above link working fine,but after clicking new_event.aspx page and again clicking same link the path become event/event/new_event.aspx
and gives error.

How to remove this problem.because i have added categorywise pages in folder.


Thanks in advance............
Posted

HTML
<a href="event/new_event.aspx">New Event</a>
Becomes:
HTML
<a href="~/event/new_event.aspx">New Event</a>
 
Share this answer
 
Comments
udusat13 1-Oct-11 4:00am    
Thankssssss..

But now using above code,from home page its not working,
and path showing ~/event/new_event.aspx

my home page is in root folder and other folder are in root also with pages.
OriginalGriff 1-Oct-11 4:24am    
The "~" indicates the root folder - so change your path to be appropriate to your folder structure. If your link address does not start with "~" then it is a relative path - relative to the current page - so any links in a master page must be full qualified.
udusat13 1-Oct-11 4:31am    
Ok
Change your code as below. Hope it should work.
HTML
<ul><li><a href="../event/new_event.aspx">New Event</a></li></ul>


Have a look at below link for more information on "relative" path of "href".
http://www.motive.co.nz/glossary/linking.php
 
Share this answer
 
v2
Comments
udusat13 4-Oct-11 0:15am    
Thanksssss.....
for http://www.motive.co.nz/glossary/linking.php
try this:
<a href="../event/New.aspx">New Page</a>
 
Share this answer
 
Comments
udusat13 4-Oct-11 0:14am    
thanksssssssssss

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900