//FID is an array
Response.Redirect("show.aspx?id=" + ID + "&name=" + NAME + "&fileid=" + FID+"&length="+j);
//In show.aspx
Label1.Text = Request.QueryString["fileid"].ToString();
I’m getting label text as System.String[]
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would suggest you to not pass an
arrayin a query string as a parameter, but put it instead in a Session variable.If you really want to pass in an array, then you can make it a
comma separated stringand then pass it in, then on the second pagesplitthat stringEdit: Check the above link and here is how you can do this..