Still not sure about your query, if you wish to send the value of hidden to next page, you can pass it in a querystring as below:
Response.Redirect("YourPageName.aspx?imgName=" + hdnImage.Value);
Then you can fetch the value of this querystring and use where ever you want.
Regards
Mike
Fortune favours the brave, so don't regret on missed oppurtunities.
|