主题:关于上传的问题,加分求助
我在做上传的时候出现的问题
我的步骤如下
1、在设计窗体拖放一个HTML的File field控件,一个Web窗体的Button控件
2、选中File field控件右键选择“作为服务器控件运行”
3、切换到HTML,添加 enctype="multipart/form-data"
4、button的Click的事件代码如下
try
{
string str=this.File1.PostedFile.FileName;
if(str.LastIndexOf("\\")>-1 )
{
str=str.Substring(str.LastIndexOf("\\")+1 );
this.File1.PostedFile.SaveAs(Server.MapPath(str) );
Response.Write ("<script>window.alert('上传成功');</script>");
}
else
{
Response.Write("<scrip>window('请选择上传的文件!');</script>");
}
}
catch(Exception err)
{
Response.Write("<script>window.alert('上传失败:"+err.Message+"');</script>)");
}
问题在于弹出对话框
显示“上传失败:对路径c:Inetpubwwwrootnewwebnewweb新建 文本文档.txt的访问被拒绝。
我不知道是怎么回事,请求帮助
我的步骤如下
1、在设计窗体拖放一个HTML的File field控件,一个Web窗体的Button控件
2、选中File field控件右键选择“作为服务器控件运行”
3、切换到HTML,添加 enctype="multipart/form-data"
4、button的Click的事件代码如下
try
{
string str=this.File1.PostedFile.FileName;
if(str.LastIndexOf("\\")>-1 )
{
str=str.Substring(str.LastIndexOf("\\")+1 );
this.File1.PostedFile.SaveAs(Server.MapPath(str) );
Response.Write ("<script>window.alert('上传成功');</script>");
}
else
{
Response.Write("<scrip>window('请选择上传的文件!');</script>");
}
}
catch(Exception err)
{
Response.Write("<script>window.alert('上传失败:"+err.Message+"');</script>)");
}
问题在于弹出对话框
显示“上传失败:对路径c:Inetpubwwwrootnewwebnewweb新建 文本文档.txt的访问被拒绝。
我不知道是怎么回事,请求帮助