Announcement
Collapse
No announcement yet.
Access permission
Collapse
Unconfigured Ad Widget
Collapse
X
-
I dont know the scripting but if you have live URL or error then paste it here so that I can check it for any server related error and can assist youLast edited by admin; 08-12-2015, 07:27 AM.
-
Access permission
trying to run the following code on:
protected void Button1_Click(object sender, EventArgs e)
{
if (NewFolderName.Text = "")
{
try
{
string newFolderName = @"c:\domains\[domainname]\wwwroot\Uploads\aaa";
Directory.CreateDirectory(newFolderName);
Page_Load(this, new EventArgs());
}
catch (Exception ex)
{
message.Text = "
" + ex.Message +"
";
}
}
}
generate the following exception:
Access to the path \c:\domains\[domainname]\wwwroot\Uploads\aaa; is denied
please advise.
Last edited by admin; 08-12-2015, 07:27 AM.Tags: None
Leave a comment: