版主你试试下面这段代码:为什么大的文件,从File Field 控件中老是出错
而得不到文件的路径呢!小的文件可以!
页面上有一个File Field 控件,一个lable,一个按钮
private void Button1_Click(object sender, System.EventArgs e)
{
string fullFileName=this.File1.PostedFile.FileName;
string fileName=fullFileName.Substring(fullFileName.LastIndexOf("
\\")+1);
string type=fullFileName.Substring(fullFileName.LastIndexOf(".")+1);
if(type=="")
{
Response.Write("类型不能为空!");
}
else
{
if(type=="rm")
{
this.Label1.Text=fileName;
}
else
{
Response.Write("格式不正确");
}
}
}