本文介绍了回发后,下拉列表会重置。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有人,
我使用js函数在dropdownlist中添加项目。所有项目都完美添加但是当我想在DB中添加选定的值时,点击按钮后,下拉列表会在回发时重置。
我该如何阻止这个。
请帮助。
寻找有价值的解决方案/建议你的,
提前谢谢
Supriya
Dear All,
I am using js function to add items in dropdownlist.All items are added perfectly but when I want to add selected value from that in DB,On clicking button the dropdownlist gets reset on postback.
How can I stop this.
Please help.
looking for valuable solutions/suggestion of yours,
Thanks in advance
Supriya
推荐答案
if(!Page.IsPostBack)
{
//bind your dropdown here
}
这篇关于回发后,下拉列表会重置。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!