这个好像不能控制,但是选择框下面可以选择格式,下面是一个上传实例; protected void btnUpLoad_ServerClick(object sender, EventArgs e)
{
//其中File和Img是控件的ID号
string fullFileName = this.File.PostedFile.FileName;//获取文件名,其中包含了盘符
string fileName = fullFileName.Substring(fullFileName.LastIndexOf("\\") + 1);//取出盘符,获取文件名
string type = fullFileName.Substring(fullFileName.LastIndexOf(".") + 1);//获取文件类型
if (type == "jpg" || type == "gif" || type == "bmp")
{
this.Img.Src = MapPath("UpLoad") + "\\" + fileName;
File.PostedFile.SaveAs(Server.MapPath("UpLoad") + "\\" + fileName);\\存储文件
}
else
{
Response.Write("");
}
}
不能控制...