Hi,
I have this codes in web.config
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/> .................................................<httpModules><add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/></httpModules> .................................................<rewriter><if header="url" match="/(.+).aspx"><rewrite url="(.+).aspx" to="$1.aspx" processing="stop"/></if><if header="url" match="/(.+)"><rewrite url="(.+)" to="~/T/test.aspx?id=$1" processing="stop"/></if></rewriter>
I have a folder it's name is T and theres a test.aspx page in it
when user write sitename.ir/t in address bar she redirect to test.aspx page
it works fine but when know update panel doesn't work and page refresh with button click although button is in updatepanel.
how can I solve this?
thanks