SubString出错?
if (this.File1 .PostedFile .ContentLength >0){
string name=this.File1 .PostedFile .FileName .Substring (this.File1 .PostedFile .FileName .LastIndexOf ("\\")+1);
Response.Write (name.ToString ());
}
else
{
Response.Write("错!");
}
而对于大文件却无法截取成功,提示为无法显示该页。请问这是为什么?