我想通过单击 ajax numericupdownextender 控件来根据文本框的值更改图像控件的图像。请在 c# 中提供解决方案,并告诉我如何为此编写自定义代码。
问问题
1532 次
1 回答
0
我想你会想要使用 NumericUpDownExtender 的 currentChanged 事件。这会触发一个事件客户端(在 javascript - 而不是 C# 中)。
“NumericUpDown 扩展器只有一个事件 currentChanged。只要通过向上/向下按钮更改扩展文本框的值或当用户在该文本框中键入新值时,就会触发此事件。在键入的情况下,该事件会触发每当焦点离开文本框时。”
function pageLoad(sender, args) {
$find('<%= NumericUpDownExtenderID.ClientID %>').add_currentChanged(methodtocall);
}
function methodtocall(sender, e) {
alert(String.format('change event fired. Value: {0}', e));
}
如果这不能解决您的问题,那么您的问题需要更清楚。
于 2012-03-26T10:27:12.790 回答