- ASP.NET 教程
- ASP.NET简介
- ASP.NET Web Forms - 教程
- ASP.NET Web Forms - HTML 页面
- ASP.NET Web Forms - 服务器控件
- ASP.NET Web Forms - 事件
- ASP.NET Web Forms - HTML 表单
- ASP.NET Web Forms - 维持 ViewState
- ASP.NET Web Forms - TextBox 控件
- ASP.NET Web Forms - Button 控件
- ASP.NET Web Forms - 数据绑定
- ASP.NET Web Forms - ArrayList 对象
- ASP.NET Web Forms - Hashtable 对象
- ASP.NET Web Forms - SortedList 对象
- ASP.NET Web Forms - XML 文件
- ASP.NET Web Forms - Repeater 控件
- ASP.NET Web Forms - DataList 控件
- ASP.NET Web Forms - 数据库连接
- ASP.NET Web Forms - 母版页
- ASP.NET Web Forms - 导航
- ASP.NET Web Forms - HTML 服务器控件
- ASP.NET CalendarDay 控件
- ASP.NET Web Forms - Web 服务器控件
- ASP.NET Web Forms - Validation 服务器控件
- ASP.NET Web 控件标准属性
- ASP.NET 控件标准属性
ASP.NET ImageButton CausesValidation 属性
ImageButton 控件
定义和用法
CausesValidation 属性规定了当 ImageButton 控件被点击时是否验证页面。
当按钮被点击时,默认地,页面验证会被执行。
该属性大多数情况下被用于在 cancel 或 reset 按钮被点击时防止进行验证。
语法
<asp:ImageButton CausesValidation="TRUE|FALSE" runat="server" />
实例
下面的实例在 ImageButton 被点击时撤销验证:
<form runat="server">
<asp:ImageButton id="button1" runat="server"
CausesValidation="FALSE" ImageUrl="img.gif" />
</form>
<asp:ImageButton id="button1" runat="server"
CausesValidation="FALSE" ImageUrl="img.gif" />
</form>
ImageButton 控件
关注微信小程序
扫描二维码
程序员编程王