Pass dynamic parameters to URL Routing for webforms with c#
Hi,<a runat="server" href="<%$ RouteUrl:RouteName =MyRouteName,pageName=Page1%>" >Search Jobs</a>
I am using url routing concept here. In the above link, I passed MyRouteName as a routename and Page1 as a pagename. Here pageName is a parameter. This is working fine.
Here I need to pass pageName dynamically. Whatever i wrote on Page1 place, it is treated as a string.
I am unable to pass value to pageName as dynamically.
Thanks in advance.