通过 asp:UpdatePanel 回发进行 Ajax 部分更新安全吗?
我想知道在 ASP.NET 中,使用 asp:UpdatePanel 并具有 postbacktrigger 或 asyncpostbacktrigger,是否安全?例如,如果我在文本框中有一些数据需要使用其中一个回发触发器,那么这些数据是否可见(安全)?
I was wondering whether in ASP.NET, using the asp:UpdatePanel and have a postbacktrigger or asyncpostbacktrigger, is it safe? E.g. if I have some data in textbox that need to use either 1 of the postback trigger, will the data be visible (safe)??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它与返回服务器的标准请求没有任何不同;即使更新面板发布了完整的视图状态和表单,它只会向用户显示页面没有回发...
因此数据将与服务器的标准发布一样“可见”。
It won't be any different than a standard request back to the server; it will just appear to the user that the page isn't posting back, even though the update panel posts the full viewstate and the form...
So the data will just be as "visible" as a standard post to the server is.