Dears,
Another thing I've faced is that I had to do URLÂ rewriting according to a client cookie.So, first thing came into my mind is writing an Http Module to do the job. Here're the steps:
- Create your Http Module.
- Build the module and put the dll in the web application's bin folder.
- Edit the web.config of the web application, go to the <modules> section and add the following:
<add name="ModuleName" type="ModuleType" />
That's it, you're done :)
Cheers,