Click to See Complete Forum and Search --> : Method for saving Images


Orange
06-26-2003, 01:09 PM
I would like to know the method to save images in C drive with proper names. The foll html code downloads the images from 2 different sites. These images are then saved manually in the C drive(File > Save as) for future reference. While saving, the images are given the name:

ChartServer.gif
ChartServer(1).gif
ChartServer(2).gif
ChartServer(3).gif
SharpChartv05.png
SharpChartv05(1).png
SharpChartv05(2).png
SharpChartv05(3).png

Instead of above names, the image file names should be:
msft.png
msft.gif
csco.png
csco.gif
intc.png
intc.gif
orcl.png
orcl.gif
ibm.png
ibm.gif

<html>
<body nowrap=true>

<IMG SRC="http://stockcharts.com/def/servlet/SharpChartv05.ServletDriver?
chart=msft,uu[m,a]daclyyay[pb22!b10!][vc60][iUb14!La12,26,9!Lh10,5,5]">

<img src="http://www.prophetfinance.com/servlet/ChartServer?&user=
&symbol=msft&width=620&height=300&interval=5&frequency=i5
&duration=1d&price.display=1&EVNT=&service=snapchart&randomize=406.1118
&VOL=&snapquote=1" width="620" height="300" name="SnapChart">

<br>
<IMG SRC="http://stockcharts.com/def/servlet/SharpChartv05.ServletDriver?
chart=csco,uu[m,a]daclyyay[pb22!b10!][vc60][iUb14!La12,26,9!Lh10,5,5]">

<img src="http://www.prophetfinance.com/servlet/ChartServer?&user=
&symbol=csco&width=620&height=300&interval=5&frequency=i5
&duration=1d&price.display=1&EVNT=&service=snapchart&randomize=406.1118
&VOL=&snapquote=1" width="620" height="300" name="SnapChart">

<br>
<IMG SRC="http://stockcharts.com/def/servlet/SharpChartv05.ServletDriver?
chart=intc,uu[m,a]daclyyay[pb22!b10!][vc60][iUb14!La12,26,9!Lh10,5,5]">

<img src="http://www.prophetfinance.com/servlet/ChartServer?&user=
&symbol=intc&width=620&height=300&interval=5&frequency=i5
&duration=1d&price.display=1&EVNT=&service=snapchart&randomize=406.1118
&VOL=&snapquote=1" width="620" height="300" name="SnapChart">

<br>
<IMG SRC="http://stockcharts.com/def/servlet/SharpChartv05.ServletDriver?
chart=orcl,uu[m,a]daclyyay[pb22!b10!][vc60][iUb14!La12,26,9!Lh10,5,5]">

<img src="http://www.prophetfinance.com/servlet/ChartServer?&user=
&symbol=orcl&width=620&height=300&interval=5&frequency=i5
&duration=1d&price.display=1&EVNT=&service=snapchart&randomize=406.1118
&VOL=&snapquote=1" width="620" height="300" name="SnapChart">

<br>
<IMG SRC="http://stockcharts.com/def/servlet/SharpChartv05.ServletDriver?
chart=ibm,uu[m,a]daclyyay[pb22!b10!][vc60][iUb14!La12,26,9!Lh10,5,5]">

<img src="http://www.prophetfinance.com/servlet/ChartServer?&user=
&symbol=ibm&width=620&height=300&interval=5&frequency=i5
&duration=1d&price.display=1&EVNT=&service=snapchart&randomize=406.1118
&VOL=&snapquote=1" width="620" height="300" name="SnapChart">

</body>
</html>