Tuesday, 8 January 2013

Image upload code in c# | asp.net image file uploading in database | gridview

Image upload code in c# | asp.net image file uploading in database | gridview
How to upload images in asp.net using c# string path = Server.MapPath("Images/"); //Images is folder here it will show full path where file or pic is going to store// lblMessage.Text = path; if (FileUpload1.HasFile) { string Filext = Path.GetExtension(FileUpload1.FileName); if(Filext==".jpg"...