Am developing web Application with visual studio 2010 and vb.net. I created user control which will be loaded to the default form.
Before I Rewrite rules in web.config file it was working fine. The problem now is I cannot use the click event when I click does not work and redirecting me to the page and showing the parameter on the address bar.
My web.config rewrite rules:
<rewrite>
<rules>
<rule name="Rewrite to article.aspx">
<match url="^pages/([_0-9a-z-]+)"/>
<action type="Rewrite" url="Default.aspx?P={R:1}"/>
</rule>
</rules>
</rewrite>
Please any one can help me.
Sorry for my poor english.