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"...
Image upload code in c# | asp.net image file uploading in database | gridview
