Sign in to follow this  
Harikrishnan Sivarajan

Sample Application In Asp.net Getting Error

Recommended Posts

I have created a sample application in asp.net

 

.aspx

 

<html>

 

<head>

 

<title>FusionCharts - Array Example using Single Series Column 3D Chart</title>

 

<script type="text/javascript" language="Javascript" src="../FusionCharts/FusionCharts.js"></script>

 

 

 

 

 

</head>

 

<body>

 

<form id="form1" runat="server">

 

<asp:Literal ID="Literal1" runat="server"></asp:Literal>

 

</form>

 

</body>

 

</html>

 

.cs

--------

 

protected void Page_Load(object sender, EventArgs e)

 

{

 

Literal1.Text = FusionCharts.RenderChart("../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", "600", "300", false, true);

 

}

 

But getting error like "w" is undefined

 

What is the problem

 

Pls help

 

Thanks and regards

Hari

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this