Incorrect path error!!!!!!!!!!! |
| Sujit Patil replied to shreya verma at 09-May-08 05:39 |
Chk wheather the path ur giving to save to that file is the correct one or not.
Means that folder is there or not.
You can create that folder if it is not there. like;
if(!Directory.Exists(path)) Directory.CreateDirectory(path);
And then save that file using
SaveAs() function of upload file control.
Sujit. |
|