如何从 JavaScript 更新 UpdatePanel
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5846927/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-25 18:33:54 来源:igfitidea点击:
How can I update an UpdatePanel from JavaScript
提问by Mahdi
Given an Asp.Net page that contains UpdatePanels. How to update a specific UpdatePanel from the client-side.
给定一个包含 UpdatePanels 的 Asp.Net 页面。如何从客户端更新特定的 UpdatePanel。
And is it possible to update it from a dialog opened from this page? (via window.open)
是否可以从从此页面打开的对话框中更新它?(通过 window.open)
Thanks in advance.
提前致谢。
采纳答案by Muhammad Akhtar
回答by Govind Malviya
Update Updatepanel with JS
使用 JS 更新 Updatepanel
<script type="text/javascript">
function UpdPanelUpdate(value)
{
var obj = document.getElementById("<%= txt.ClientID %>");
obj.value=value;
__doPostBack("<%= btn.ClientID %>","");
}
</script>