hi
i'm using the following statement in my application
string[] strTArray = new string[5];
strTArray = (string[])(Session["TextDataAr ray"]);
when i run the application its giving the below error
{"Unable to cast object of type 'System.String' to type 'System.String[]'."}
can anyone say how to solve this
thanks in advance
Archu
i'm using the following statement in my application
string[] strTArray = new string[5];
strTArray = (string[])(Session["TextDataAr ray"]);
when i run the application its giving the below error
{"Unable to cast object of type 'System.String' to type 'System.String[]'."}
can anyone say how to solve this
thanks in advance
Archu
Comment