hi guys.. is it possible to add session("username") in [rewriter]?
this session is dynamic.. subject to client's browser. please advise. tq
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
</configSections>
<system.web>
<httpModules>
<add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/>
</httpModules>
</system.web>
<rewriter>
<rewrite url="~/home/$" to="~/pages/<%=session("username")%>/index.aspx?username=<%=session("username" ...
Go to the complete details ...