I Wrote a class Library (.Net Framework 2.0)
and I created an empty Web Application project
When I added the dll as reference to the Web Application project
everything works fine.
But when I added the dll to the GAC and write the following
lines to the web.config
<modules runAllManagedModulesForAllRequests="true">
<remove name="RedirectModule" />
<add name="RedirectModule" type="RedirectModule.RedirectModule, RedirectModule, Version=1.0.0.0, Culture=neutral, PublicKeyToken=e81458cb6113cf4f"/>
</modules>
sometimes it work and sometimes it doesn't work
How Can I solve this problem?
Thank You.