in my asp.net i need to convert httppostedfile to bmp or image format.how to convert this.am getting posted file from fileupload control.
Session["File"] = FileUpload1.PostedFile;
This way
HttpPostedFile file = (HttpPostedFile)Session["File"]; file.SaveAs("C:\\Images\\img.bmp");
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.