我在file1.PostedFile.SaveAs(path);这里出错。为什么。。。
异常详细信息: System.UnauthorizedAccessException: 对路径“c:\inetpub\wwwroot\图片上传\photo”的访问被拒绝。
程序如下:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
namespace 图片上传
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.HtmlControls.HtmlInputFile file1;
protected System.Web.UI.WebControls.Image Image1;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Button Button1;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
}
private void Button1_Click(object sender, System.EventArgs e)
{
string path=System.IO.Path.Combine(Server.MapPath("."),"photo");
this.Response.Write(path);
bool jpg=file1.Value.ToLower().EndsWith("jpg");
bool gif=file1.Value.ToLower().EndsWith("gif");
if(this.file1.Value.Length==0)
{
this.Response.Write("<script>alert('请选择您要上传的图片文件');</script>");
return;
}
if(jpg==false && gif==false)
{
this.Response.Write("<script>alert('上传的图片格式只能是.jpg或.gif');</script>");
return;
}
if(file1.PostedFile.ContentLength>5120)
{
this.Response.Write("<script>alert('图片的大小不能大于5K');</script>");
return;
}
if(file1.PostedFile.ContentLength !=0)
{
file1.PostedFile.SaveAs(path);
this.Response.Write("<script>alert('图片上传成功!');</script>");
this.Response.Write("123");
}
}
}
}
[此贴子已经被作者于2006-11-3 21:25:54编辑过]