I have a Login.aspx as follows:
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>QspeeQ NOC</title>
<link href="CSS/Default.css" rel="stylesheet" type="text/css" />
</head>
<body class="Login">
<form id="form1" runat="server" >
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
</telerik:RadScriptManager>
</form>
</body>
</html>
If I set Login.aspx as my start page and use:
<authentication mode="Windows"/>
in the web.config everything works as expected; but as soon as I change the authentication to:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="None" timeout="1" name=".ASPXAUTH" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="default.aspx" cookieless="UseCookies" enableCrossAppRedirects="false"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
I get the following error:
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
I am using:
<add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.2.826.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
Hope this is enough information to go on!
Thanks in Advance
Bleddyn
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>QspeeQ NOC</title>
<link href="CSS/Default.css" rel="stylesheet" type="text/css" />
</head>
<body class="Login">
<form id="form1" runat="server" >
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
</telerik:RadScriptManager>
</form>
</body>
</html>
If I set Login.aspx as my start page and use:
<authentication mode="Windows"/>
in the web.config everything works as expected; but as soon as I change the authentication to:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="None" timeout="1" name=".ASPXAUTH" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="default.aspx" cookieless="UseCookies" enableCrossAppRedirects="false"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
I get the following error:
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
I am using:
<add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.2.826.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
Hope this is enough information to go on!
Thanks in Advance
Bleddyn