.NET什么控制上传图片的类型
发布网友
发布时间:2022-09-17 11:19
我来回答
共2个回答
热心网友
时间:2023-11-07 09:31
楼上的意思就是取你选择的文件名(.)后面的字符串,也就是去后缀名,然后根据你自己的需要判断。
热心网友
时间:2023-11-07 09:32
C# code
string Ex = this.PicUrl.FileName.Substring(this.PicUrl.FileName.LastIndexOf(".") + 1);
if (Ex.ToLower() == "jpg" || Ex.ToLower() == "gif")
{
if (this.PicUrl.HasFile)
{
//this.PicUrl.PostedFile.SaveAs(picPath + picName);
cn.SmallImag(this.PicUrl.PostedFile.FileName, picPath + picName);
this.Image1.ImageUrl = @"../GoodsPic/" + picName;
FullPath = @"GoodsPic/" + picName;
}
你试试吧!祝你成功!