How the relative link is translated to absolute link in ASP.NET? Sample:
<ItemTemplate>
<a href="catalog.aspx?cid=<%#Eval("categoryid") %>" class="subcategory"><%#Eval("categoryName") %></a><br/>
</ItemTemplate>
How is this link translated, what properties are used, what object? Is there a way to override the default translation behavior? How?
<ItemTemplate>
<a href="catalog.aspx?cid=<%#Eval("categoryid") %>" class="subcategory"><%#Eval("categoryName") %></a><br/>
</ItemTemplate>
How is this link translated, what properties are used, what object? Is there a way to override the default translation behavior? How?