I'm not able to read the array passed from the other page with Request.Querystring
//Label1.Text += FID[l]; //Checked the array and it is printing properly.
Response.Redirect("show.aspx?id=" + ID + "&name=" + NAME + "&fileid="
+FID+"&length="+j);
string fid=string.Empty;
if (!string.IsNullOrEmpty(Convert.ToString(Request.QueryString["fileid"].ToString())))
{
fid = Request.QueryString["fileid"].ToString();
}
for (int l = 0; l < length; l++)
{
Label1.Text += fid[l]; //Printing wrong array
}
Can anybody help me with this.
How can I use Global.aspx file to do this instead of parameter passing.