Hi,
I have a problem with Session. I define the session Session["SegDirEB"] = SegDirEB; here
foreach (String fn in folder2) //for each direction/file in att file find the matching inters in ff file and calculate
{
string path = Path.GetFileName(fn).Substring(3);
char[]c ={'.' , 'c' , 's' , 'v'};
path = path.TrimEnd(c); //orig inters_dest inters
direc = path;//Path.GetFileName(fn) +"," //direction same as path
sectionList = new List<string>();
if (fn.Contains("EB_"))
{
StreamReader readerEB = new StreamReader(File.OpenRead(fn));
index = "EB";
fftimes = fftimesE;
...
Go to the complete details ...