The MSDN article about URL Rewwriter is great but it does not address the issue with relative paths. If the rewritten URL has a different path than the originnal the relative links on the page will not work Is there a way to resolve this problem?
Original link:
Rewritten link:
This is the link created on CSK catalog page:
<ItemTemplate>
<a href="catalog.aspx?cid=<%#Eval("categoryid") %>" class="subcategory"><%#Eval("categoryName") %></a><br/>
</ItemTemplate>
It will become:
yet it should really be:
The item template SHOULD USE the rewritten path, which is instead of using the original path
Original link:
Rewritten link:
This is the link created on CSK catalog page:
<ItemTemplate>
<a href="catalog.aspx?cid=<%#Eval("categoryid") %>" class="subcategory"><%#Eval("categoryName") %></a><br/>
</ItemTemplate>
It will become:
yet it should really be:
The item template SHOULD USE the rewritten path, which is instead of using the original path