Sign in to follow this  
hifen

help!!!!

Recommended Posts

Microsoft VBScript runtime error '800a000d'

Type mismatch: 'renderChart'

/nexweb/nany3.asp, line 140

 

what's that mean? my code is below:

Dim cost1,cost2

cost1 = Int(Request.querystring("edemand"))

cost2 = Int(Request.querystring("eprice"))

 

Dim strXML

 

strXML = "<chart caption='Sales by Product Category' subCaption='For this week' showPercentValues='1' pieSliceDepth='30' showBorder='1'>"

strXML = strXML & "<set label='Soups' value='" & cost1 & "' />"

strXML = strXML & "<set label='Salads' value='" & cost2 & "' />"

strXML = strXML & "</chart>"

 

Call renderChart("../nexweb/FusionCharts/Pie3D.swf", "", strXML, "Sales", 500, 300, false, false)

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