进行更改时,文本框绑定不起作用

发布于 2024-10-14 21:17:28 字数 633 浏览 2 评论 0原文

希望 我有一个对象(skuform),其属性(SKUCode)绑定到文本框。 如果我运行此表单,更改文本框中的值(例如“test123”),然后单击按钮,我注意到该对象的(skuForm)属性没有反映新值(“test123”),您能建议一下吗可能是错的。

<td>
    <telerik:RadTextBox runat="server" ID="txtSKUCode"  
                   text='<%# skuForm.SKUCode %>' 
                   EnableViewState="true"
                   Wrap="false" 
                   ontextchanged="txtSKUCode_TextChanged">
    </telerik:RadTextBox>
</td></tr> 

<telerik:RadButton ID="RadButton1" 
                   runat="server" 
                   onclick="RadButton1_Click">
</telerik:RadButton>

Hoping
I have an object (skuform),whose property(SKUCode) is bound to a textbox.
If I run this form , change the value in the textbox (say "test123"), and hit the button, I notice that the object's (skuForm) property does not reflect the new value ("test123"), could you please suggest what could be wrong.

<td>
    <telerik:RadTextBox runat="server" ID="txtSKUCode"  
                   text='<%# skuForm.SKUCode %>' 
                   EnableViewState="true"
                   Wrap="false" 
                   ontextchanged="txtSKUCode_TextChanged">
    </telerik:RadTextBox>
</td></tr> 

<telerik:RadButton ID="RadButton1" 
                   runat="server" 
                   onclick="RadButton1_Click">
</telerik:RadButton>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅沫记忆 2024-10-21 21:17:28

尝试将 RadTextBox DataContext 属性设置为实现 INotifyPropertyChanged 接口的类。所以当PropertyChanged事件发生时,你的RadTextBox就会改变他的值。

您可以在 msdn 页面。

Try to set RadTextBox DataContext property to class wich implemented INotifyPropertyChanged interface. So when PropertyChanged event will occurs, you RadTextBox will change his value.

You can see sample of this on msdn page.

旧情别恋 2024-10-21 21:17:28

什么时候调用DataBind?如果您不在回发时调用它,那么它不会更新。

When do you call DataBind? If you're not calling it on the postback, then it won't get updated.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文