Sorry if this has been mentioned before but I found no resolution and I
could not reply to older messages.
I am having a FORMS AUTHENTICATION problem. Basically whenever I add
in the web.config the form authentication code, AJAX stops working.
Any help? Thanks in advance
Within System.Web:
<authentication mode="Forms">
<forms loginUrl="default.aspx" protection="All" timeout="30">
<credentials passwordFormat="Clear">
<user name="username" password="password"/>
</credentials>
</forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
Outside:
<!-- Allow all users access to default.aspx page. -->
<location path="default.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---