文本框 TextChangedEvent 未触发?
我正在开发一个基本的电子商务网站,并且正在寻求一些有关用户在文本框中输入数值时需要进行的实时计算的帮助。
目前我已经设置了在与文本框相关的 TextChanged 事件中发生的计算,但这似乎不起作用???我想知道是否需要将自动回发设置为 true,但我希望避免重新加载页面(如果有帮助的话)!
任何帮助都会很棒!这是按钮背后的代码
protected void TB_Quantity_TextChanged(object sender, EventArgs e)
{
LB_price.Text =
(int.Parse(ViewState["Price"].ToString()) *
int.Parse(TB_Quantity.Text.Trim())).ToString();
}
I'm working on a basic eCommerce site and I am looking for some help regarding a live calculation that needs to be made when the user enters a numeric value into a text box.
Currently I have set the calculation the happen in a TextChanged event tied to the textbox but this does not seem to be working??? I am wondering if I need to set auto postback to true but I would like the avoid reloading the page if it can be helped!!!
Any help would be great! Here is the code behind the button
protected void TB_Quantity_TextChanged(object sender, EventArgs e)
{
LB_price.Text =
(int.Parse(ViewState["Price"].ToString()) *
int.Parse(TB_Quantity.Text.Trim())).ToString();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不将页面回发到服务器,则无法触发 asp.net 事件。
但是,如果您需要回发对用户不可见,则可能需要使用 部分页面更新。
You can not fire an asp.net event without post back the page to the server.
However, if you need the posting back to be invisible to the user, you may need to use Partial Page Update.