if condition then
do....
else
"i want to exit to next loop here"
end if
if condition
do ,.....
else
do.....
Above, i want to do nothing in first else statement and just want to go to next if else.
Any suggestions
I am using asp. I want to read a file and check if a "Test Name" is already been used before or not.
Right now what i am doing is reading a file and just read first 9 character of each line because that file have "Test Name" written at the starting of line. After that i want to break and move to...
if condition then
do....
else
"i want to exit to next loop here"
end if
if condition
do ,.....
else
do.....
Above, i want to do nothing in first else statement and just want to go to next if else.
Any suggestions
I am using asp. I want to read a file and check if a "Test Name" is already been used before or not.
Right now what i am doing is reading a file and just read first 9 character of each line because that file have "Test Name" written at the starting of line. After that i want to break and move to...