N
Nathan
Hi:
Here's what I am trying to do, pass a string array between
two pages using Server.Transfer method.
Sending page I do this:
private string[] arrFCInfo=new String[5];
//Property - read only public
public object arrayFC
{
get
{
return arrFCInfo;
}
}
In the receiving page, I want to get the string array from
the object.
My basic question: How do I cast an object in to a string
[]?
Thanks in advance.
Here's what I am trying to do, pass a string array between
two pages using Server.Transfer method.
Sending page I do this:
private string[] arrFCInfo=new String[5];
//Property - read only public
public object arrayFC
{
get
{
return arrFCInfo;
}
}
In the receiving page, I want to get the string array from
the object.
My basic question: How do I cast an object in to a string
[]?
Thanks in advance.