Hmm , you may be out of luck unless you can find the original install set or
get ServerObjects to help you (unlikely with unsupported legacy components).
http://www.support.hostinguk.net/com...s/aspchart.htm
Chris.
"Chris Barber" <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:ud8gQh7dDHA.1656@TK2MSFTNGP10.phx.gbl...
Well - there you go, what more do you need?
Reinstall it with the relevant purchased license keys or check that the
license key applied during use of the component is valid.
Chris.
"Prabhakar" <prabhakar29@hotmail.com> wrote in message
news:081d01c377b7$a41f48a0$a001280a@phx.gbl...
Error message when use it is
This evaluation component has expired.
thanks[color=blue]
>-----Original Message-----
>Friends,
>
>I have been migrating ASP applications from IIS4.0/NT4.0[/color]
to[color=blue]
>IIS5.0/W2K. All the applications working perfectly except[/color]
one. This[color=blue]
>particular application will make use of asp chart object.
>
>
>
>
>Sub BuildGraph(rate(), name,color,chartHight,chartWidth)
> ctBar = 5
> cNone = 0
> cGradient = 6
>'***** Delete old jpg's ****
>
>ON error resume next
>
> rem[/color]
************************************************** *********
***********[color=blue]
> rem * Instantiate the Chart component
> rem[/color]
************************************************** *********
***********[color=blue]
> Set Chart = Server.CreateObject ("ASPChart.Chart")
> Chart.AddSeries (ctBar)
> Chart.VertAxisMax= 100
> Chart.VertAxisMin = 90
> for i = 1 to 12
> if rate(i) <> 0 then
> Chart.AddValue rate(i), MonthName[/color]
(i,TRUE) , color[color=blue]
> end if
> Next
> Chart.BarStyle = cGradient
> Chart.LegendVisible = false
> Chart.AddAxisLabel 2,name
> rem[/color]
************************************************** *********
***********[color=blue]
> rem * Set the PanelColor, remove the OuterBevel
> rem[/color]
************************************************** *********
***********[color=blue]
> Chart.PanelColor = vbWhite
> Chart.BevelOuter = cNone
> Chart.ChartBGColor = vbWhite
> rem[/color]
************************************************** *********
***********[color=blue]
> rem * Set the Width and Height of the image
> rem[/color]
************************************************** *********
***********[color=blue]
> Chart.Height = chartHight '100
> Chart.Width = chartWidth '300
> rem[/color]
************************************************** *********
***********[color=blue]
> rem * Set the filename, save the image and write the[/color]
image tag[color=blue]
> rem[/color]
************************************************** *********
***********[color=blue]
> rem dir_path value "d:\inetpub\download"
> Chart.FileName = Application("dir_path")&[/color]
Session.SessionID & name &[color=blue]
>".jpg"
> Chart.SaveChart
> rem[/color]
************************************************** *********
***********[color=blue]
> rem * Destroy the object
> rem[/color]
************************************************** *********
***********[color=blue]
> Set Chart = nothing
>End sub
>
>This code is in functions_share.asp
>
>
>
>The above sub being called from the xyz.asp (located in[/color]
the same[color=blue]
>folder as "download" folder is) as following:
>
>
> If Session("GRAPH_type")="abc" or Session[/color]
("GRAPH_type")="def" then[color=blue]
> Call BuildGraph(filled_rate,"Chart[/color]
Name",vbBlue,100,300)[color=blue]
>
>
>
> <td><img src="./download/<%[/color]
=Session.SessionID%>Chart%20Name.jpg"></td>[color=blue]
>
>
>The problem with the above blocks of codes is " JPG are[/color]
not created[color=blue]
>!". I have given enough permissions to write[/color]
to "download" folder.[color=blue]
>What am I missing here.
>
>Any help in this direction appreciated...
>TIA
>KP
>.
>[/color]