I am currenlty stuck on a small project. Here is my code;
String StuPicc = Server.MapPath("images/" + UploadPic.FileName);
UploadPic.SaveAs(StuPicc);
UploadPic is the control name. But, neither it display the name nor upload the selected image.
When i output the result on a label it display;
images/{image name isn't showing here}
Any help regard to this will be apreciatable.
If you are using a file upload control then..FileUploadControl ID=”FuImage” file upload control..and uploaded files will be saved in “UploadedFiles” folder.
Hope this helps…