H
HardySpicer
I have a cvs data file orbit.csv and found this code.
function ReadFile()
{
var fso, f1, ts, s;
var ForReading = 1;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fspenTextFile( Server.MapPath("orbit.csv"), ForReading);
return(f.ReadAll());
}
The data file has four columns and the first line maybe something like
1.23,3.45,6.78,2.34
I need access to the second and third column only. Can I use teh above
function - if so how exactly?
Thanks
Hardy
function ReadFile()
{
var fso, f1, ts, s;
var ForReading = 1;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fspenTextFile( Server.MapPath("orbit.csv"), ForReading);
return(f.ReadAll());
}
The data file has four columns and the first line maybe something like
1.23,3.45,6.78,2.34
I need access to the second and third column only. Can I use teh above
function - if so how exactly?
Thanks
Hardy