Hi all,
Im having problem while creating directory Access to the path is denied
Code
// Cat Folder Path
string folderPathCat = @"Product/Category/";
string pathString = folderPathCat + "/" + txt_AddNewCat;
Directory.CreateDirectory(Server.MapPath(pathString));
// SubCat Folder Path
string subCatPathString = pathString + "/" + txt_AddSubCat;
Directory.CreateDirectory(subCatPathString);
Thanks in advance
dfd
Go to the complete details ...