How do I load the javascript in a content page???
Page 1 of 1
Using with ASP.NET Master Pages Cannot load javascript
Other Replies To This Topic
#2
Posted 08 April 2009 - 06:00 AM
Hello,
Could you take a literal box into the content page (content box) and then try passing all the javascript tags to the literal.text property?
Regards,
Dhruva Ghosh
Dhruva Ghosh
Other Replies To This Topic
#3
Posted 08 April 2009 - 03:23 PM
You put this in your content page:
(asp:ScriptManager ID="ScriptManager1" runat="server")
(Scripts)
(asp:ScriptReference Path ="../FusionCharts/FusionCharts.js" /)
(/Scripts)
(/asp:ScriptManager)
Obviously you'll need to replace parenthesis with appropriate brackets...
(asp:ScriptManager ID="ScriptManager1" runat="server")
(Scripts)
(asp:ScriptReference Path ="../FusionCharts/FusionCharts.js" /)
(/Scripts)
(/asp:ScriptManager)
Obviously you'll need to replace parenthesis with appropriate brackets...
Other Replies To This Topic
#4
Posted 09 April 2009 - 03:44 AM
Hello sbeeson,
So it is working correctly now?
Glad to know!
Regards,
Dhruva Ghosh
Dhruva Ghosh
Other Replies To This Topic
#5
Posted 09 April 2009 - 01:00 PM
Yes, it works like this:
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Scripts><asp:ScriptReference Path ="../FusionCharts/FusionCharts.js" /></Scripts></asp:ScriptManager >Other Replies To This Topic
Page 1 of 1


Back to top
MultiQuote