Hello,
I made an ASP.NET page that uses a RadScheduler with client-side binding.
User access to the application is authenticated by a classical login form based on ASP.NET Membership.
Everything works fine except for an authentication issue that periodically occurs.
The following is an example to illustrate the scenario in which the issue is encountered:
- a user goes to the RadScheduler page
- they leave the page open but don't use the application for some hours (and during this time, the user session expires)
- if the user performs a navigation command on the scheduler (for exampe: click on "next week"), the browser displays a modal dialog box in which authentication is requested, with login and password fields
- if the user inputs their credentials and clicks "ok", another alert box says "Authentication failed" and so on
- at this point the user is stuck on this page and is forced to close the browser tab or entire browser window.
My question is: what can I do in order to make user credentials be accepted by the server?
I already tried with this in web.config:
<system.web.extensions>
<scripting>
<webServices>
<!-- Allows for ajax.net user authentication -->
<authenticationService enabled="true" requireSSL="false" />
</webServices>
</scripting>
</system.web.extensions>
but nothing changed.
Any suggestion would be appreciated.
Thanks in advance
Regards
Mike