我正在使用c#website.in此页面之一我需要通过代码侧图像按钮动态添加,但它显示提交查询。所以,现在我的问题是如何从动态添加的图像中删除此提交查询按钮
答案 0 :(得分:0)
我假设你正在做这样的事情来添加ImageButton:
ImageButton imageButton = new ImageButton();
FileInfo fileInfo = new FileInfo(strFileName);
imageButton.ImageUrl = "~/img/abc.png";
imageButton.Width = Unit.Pixel(100);
imageButton.Height = Unit.Pixel(100);
我建议您将value
属性设置为空字符串""
,如下所示:
imageButton.Attributes["value"]="";
OR
imageButton.Attributes.Add("value", "");
另请参阅此stackoverflow post
希望这有帮助!