|
我想通过点击checkboxlist 使时间日期控件的有效状态进行切换,为何不行?
代码示例如下:
<f:ContentPanel ID="ContentPanelQuery" runat="server" AutoHeight="true" AutoWidth="true"
BodyPadding="5px" EnableCollapse="True" EnableBackgroundColor="true" ShowBorder="true"
ShowHeader="true" Title="查询" Icon="ComputerMagnify">
<table border="0" cellpadding="0" cellspacing="0" class="table_main">
<tr>
<td style="text-align: center; height: 22px;">
<div>
<asp:CheckBox ID="ckbDate" runat="server" Text="指定时间范围" AutoPostBack="True" />
开始日期:<input id="txtStart"
type="text" runat="server" style="width: 102px"
disabled="false" />
结束日期:<input id="txtStop" type="text"
runat="server" style="width: 101px"
disabled="false" />
</div>
</td>
</tr>
</table>
</f:ContentPanel>
protected void ckbDate_CheckedChanged(object sender, EventArgs e)
{
if (!this.ckbDate.Checked)
{
this.txtStart.Disabled = true;
this.txtStop.Disabled = true;
}
else
{
this.txtStart.Disabled = false;
this.txtStop.Disabled = false;
}
}
点击checkboxlist 执行了ckbDate_CheckedChanged,但是不能改变时间日期控件状态!
但是 ,在asp.net 项目下是可行.
高手请进.xx
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|