asp.net上传图片控制上传宽度必须大于500像素的图片?
if(!wf.checkExtension((HtmlInputFile)this.GridView1.Rows[e.RowIndex].Cells[0].FindCon...
if (!wf.checkExtension((HtmlInputFile)this.GridView1.Rows[e.RowIndex].Cells[0].FindControl("File4")))
{
wf.OpenDialogForButton((Button)sender, "错误:只能上传gif,bmp,jpg格式的图片!");
return;
}
string dpic = wf.uploadImg(((HtmlInputFile)this.GridView1.Rows[e.RowIndex].Cells[0].FindControl("File4")), "../pic/", 500, 500, "Cut");
string maxpic = "S" + dpic;
//上传限制开始
string wid = image.Width.ToString();
if (int.Parse(wid) > 500)
{
wf.OpenDialogForButton((Button)sender, "错误:只能上传图片宽度大于500像素的图片!");
return;
}
//上传限制结束
从上传限制开始是我自己找网络上的代码修改的提示
Compiler Error Message: CS0103: The name 'image' does not exist in the current context
希望大哥们能看代码帮我解决这个功能,我不懂asp.net 展开
{
wf.OpenDialogForButton((Button)sender, "错误:只能上传gif,bmp,jpg格式的图片!");
return;
}
string dpic = wf.uploadImg(((HtmlInputFile)this.GridView1.Rows[e.RowIndex].Cells[0].FindControl("File4")), "../pic/", 500, 500, "Cut");
string maxpic = "S" + dpic;
//上传限制开始
string wid = image.Width.ToString();
if (int.Parse(wid) > 500)
{
wf.OpenDialogForButton((Button)sender, "错误:只能上传图片宽度大于500像素的图片!");
return;
}
//上传限制结束
从上传限制开始是我自己找网络上的代码修改的提示
Compiler Error Message: CS0103: The name 'image' does not exist in the current context
希望大哥们能看代码帮我解决这个功能,我不懂asp.net 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询