I am using Visual studio 2008 and trying to upload files. Though the file uploaded can be seen through windows explorer, it is not shown in solution explorer.
i am using the following c# code:
String fnm = FileUpload1.FileName;
String cp = Server.MapPath("~/Uploads/");
FileUpload1.SaveAs(cp + fnm);