string filepath = myfile.PostedFile.FileName;        int fileSize = myfile.PostedFile.ContentLength;
        if (fileSize > 1024 * 100 * 3 * 100)
        {            ShowWindows.Show(this.Page, "Can't more than 30M");
            return;
        }
        else
        {            string filex = filepath.Substring(filepath.LastIndexOf(".") + 1).ToLower();
            if (filex == "jpg" || filex == "gif" || filex == "jpeg")
 {
                string newsfilename = "S" + DateTime.Now.ToString("yyyyMMddhhmmssfff") + "." + filex;
                string path = Server.MapPath("~/UploadFiles/Images/");
                if (!Directory.Exists(path))
                {
                    Directory.CreateDirectory(path);
                }
                myfile.PostedFile.SaveAs(path + newsfilename);
               lblatt.Text = path + newsfilename;
            }            else
            {
                ShowWindows.Show(this.Page, "Format Wrong!");
            }
        }
异常:
Access to the path 'D:\Hosting\6786817\html\chinavoiceovertalent.com\UploadFiles\Images\S20110908072334848.txt' is denied. 我的网站地址为http://www.chinavoiceovertalent.com
我原来一直是用的这样的代码没有问题的,现在突然出现这问题,很费解,查阅相关资料,说是没有极限?怎么设置