Sunday, May 15, 2011

how to stored Images

stored
byte[] imageBytes =(byte[]) Session["imgData"];



display
imageBytes = ((byte[])Session["imgData"]);
Response.BinaryWrite(imageBytes);

No comments:

Post a Comment