H
hans.bonefaas
Hi,
Anybody experience with Freetextbox and Forms Authentication?
My Freetextbox works when I add the following to the web.config file:
<pages pageBaseType="System.Web.UI.Page" />
<httpModules>
<clear />
</httpModules>
<httpHandlers>
<add verb="GET" path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
</httpHandlers>
But then the forms authentication doesn't work. When I remove the lines
mentioned above the forms authentication works again. It looks like the
2 don't like each other.
My complete web.config file:
<configuration>
<system.web>
<pages pageBaseType="System.Web.UI.Page" />
<httpModules>
<clear />
</httpModules>
<httpHandlers>
<add verb="GET" path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
</httpHandlers>
<compilation defaultLanguage="vb" debug="true" />
<authentication mode="Forms">
<forms name=".ASPXUSER" loginUrl="login.aspx" protection="All"
timeout="60" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
<globalization requestEncoding="UTF-8" responseEncoding="UTF-8" />
</system.web>
</configuration>
Any suggestions?
Thanks,
Hans
Anybody experience with Freetextbox and Forms Authentication?
My Freetextbox works when I add the following to the web.config file:
<pages pageBaseType="System.Web.UI.Page" />
<httpModules>
<clear />
</httpModules>
<httpHandlers>
<add verb="GET" path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
</httpHandlers>
But then the forms authentication doesn't work. When I remove the lines
mentioned above the forms authentication works again. It looks like the
2 don't like each other.
My complete web.config file:
<configuration>
<system.web>
<pages pageBaseType="System.Web.UI.Page" />
<httpModules>
<clear />
</httpModules>
<httpHandlers>
<add verb="GET" path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
</httpHandlers>
<compilation defaultLanguage="vb" debug="true" />
<authentication mode="Forms">
<forms name=".ASPXUSER" loginUrl="login.aspx" protection="All"
timeout="60" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
<globalization requestEncoding="UTF-8" responseEncoding="UTF-8" />
</system.web>
</configuration>
Any suggestions?
Thanks,
Hans