ScriptManager 和 EnablePartialRendering
我有一个使用 ajax scripmanager > 的页面进度更新,这样我就可以向用户显示“正在加载,等待..”的消息。现在,我的问题如下。我将 EnablePartialRendering 设置为 true,主要是因为如果我将其设置为 false,则加载内容的面板不会显示。 当设置为true时,如果我想在通常设置为visible=false的行上设置文本和可见性,它就不会发生。我的行没有显示。
我的“正在加载”消息仅在存储过程存在时才会显示,如果不存在,我只需要让用户知道。
有什么建议吗?
I have a page that uses ajax scripmanager > progressupdate so I can display the user a message of "Loading, wait..". Now, my question is the following. I have the EnablePartialRendering set to true, mainly because if I set it to false my panel with the loading stuff doesn't display.
When is set to true, then if I want to set the text and visibility on a row that is normally set to visible=false, it just doesn't happen. My row doesn't show.
My "Loading" message will only display if a stored procedure exist, if it doesn't I just need to let the user know.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我的 .aspx 页面中的一些代码
。
。
Row_Error 行是我要显示消息的位置。
Here is some code from my .aspx page
.
.
The Row_Error row is where I want to display a message.