Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
很不言自明。我在更新面板中有一个文本框,它会在输入完整条目时自动回发,但在从 AutoCompleteExtender 中选择选项时不会回发。关于为什么这不起作用或可能的解决方法的任何想法?
终于找到了解决办法。您必须将自动完成扩展器的 OnClientItemSelected 设置为 javascript 函数,然后从所述函数调用 __doPostBack。
function OnJobSelected(source, eventArgs) { var SourceID = source.get_element().id __doPostBack(SourceID, ""); }