从动态添加的图像按钮中删除提交查询

时间:2017-08-29 08:38:03

标签: c# imagebutton

我正在使用c#website.in此页面之一我需要通过代码侧图像按钮动态添加,但它显示提交查询。所以,现在我的问题是如何从动态添加的图像中删除此提交查询按钮

1 个答案:

答案 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

希望这有帮助!