I was having issues with prometheus running when using a Master page... I have found a thread that states to remove the runat = server from the head tag and insert
<script>var controlClientObject = <%= RadControl1.ClientID %></script>
below is how I have added it in my master page.
<script>var controlClientObject = <%= RadControl1.ClientID %></script>
below is how I have added it in my master page.
<
body style="margin: 0px;" runat=server>
<form id="frmMaster" >
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">
<Scripts>
<asp:ScriptReference Path="~/Scripts/setFooter.js" />
</Scripts>
</asp:ScriptManager>
<
script>var controlClientObject = <%= RadControl1.ClientID %></script>
<div id="Header">
Now I get the following error... Can someone please help me as to what I am missing?
Compiler Error Message: CS0103: The name 'RadControl1' does not exist in the current context
I have made sure everything is in the web config and I do have the dll in the bin folder... I am able to to run everything fine as long as I do not use a master page?
Thanks for the help
Gina