DoNetNuke Runtime Errors: when I try to Register or login the button links do not work. I get an 'Error on Page' Msg on the bottom of Page. I cannot login as admin into DotnetNuke. It looks like the Javascript code is not calling the control module.
the login link just brings up the 'Error on Page Msg' at the browser screen ... bottom of the page.
I copied the results of the 'Error on Page" next to the Yelloe triangle.
--------------------------
----------
----------
---------------------------------
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; WinNT-PAI 27.07.2009)
Timestamp: Thu, 10 Jun 2010 12:49:52 UTC
Message: ASP.NET Ajax client-side framework failed to load.
Line: 45
Char: 34
Code: 0
URI:
http://cmaanorcalevents.com/
Message: 'Type' is undefined
Line: 2
Char: 288
Code: 0
URI:
http://cmaanorcalevents.com/js/dnn.js
Message: 'Type' is undefined
Line: 2
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/js/dnn.dom.positioning.js
Message: 'Type' is undefined
Line: 2
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/js/dnn.xmlhttp.js
Message: 'Type' is undefined
Line: 2
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/js/dnn.controls.js
Message: 'Type' is undefined
Line: 2
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/js/dnn.controls.dnnmenu.js
Message: 'Sys' is undefined
Line: 65
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/
Message: Object doesn't support this property or method
Line: 6
Char: 5
Code: 0
URI:
http://cmaanorcalevents.com/Resources/Shared/scripts/initWidgets.js
Message: 'Sys' is undefined
Line: 272
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/
Message: 'dnn' is undefined
Line: 275
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/
Message: 'dnn' is undefined
Line: 58
Char: 1
Code: 0
URI:
http://cmaanorcalevents.com/
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
this is the sequence in which it is design to work...But it fails I do not get a runtime error except for the page error at the bottom of the screen..
---------------------------------------------------------------
Register | Login <- the login button shld call the below javascript code. the js code should call the > dnn control tag code and that code shld call the ="~/Admin/Skins/Login.ascx"
-------------------------------------------------------------
<script type="text/javascript"> //<![CDATA[ var theForm = document.forms['Form']; if (!theForm) { theForm = document.Form; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script>
----------------------------------------------------------------
<div id="login_style" class="user"> Administrator Only <dnn:USER runat="server" id="dnnUSER" CssClass="user" /> <dnn:LOGIN runat="server" id="dnnLOGIN" CssClass="user" /> </div>
-----------------------------------------------------------------
<%@ Register TagPrefix="dnn" TagName="USER" Src="~/Admin/Skins/User.ascx" %> <%@ Register TagPrefix="dnn" TagName="LOGIN" Src="~/Admin/Skins/Login.ascx" %> this is the sequence in which it is design to work...But it fails I do not get a runtime error except for the page error at the bottom of the screen..