An exception of type 'System.IO.Dire ctoryNotFoundEx ception' occurred in mscorlib.dll but was not handled in user code
Additional information: Could not find a part of the path 'E:\pdf\cc.fdf' .
This exception occurs at line 2.
When I went and go to the folder E:\pdf it shows it is read only.
1. Response.Conten tType = "Applicatio n/vnd.doc";
2. Response.WriteF ile(@"E:\pdf\cc .doc");
3. Response.End();
May I know why is changed to readonly and why the exception occurs.
Thanks
Additional information: Could not find a part of the path 'E:\pdf\cc.fdf' .
This exception occurs at line 2.
When I went and go to the folder E:\pdf it shows it is read only.
1. Response.Conten tType = "Applicatio n/vnd.doc";
2. Response.WriteF ile(@"E:\pdf\cc .doc");
3. Response.End();
May I know why is changed to readonly and why the exception occurs.
Thanks
Comment