Asp.net:使用 PageMethods 保存数据输入表单

发布于 2024-09-27 18:14:44 字数 183 浏览 4 评论 0原文

问题:我有一个数据输入表格。我想在没有页面往返或 UpdatePanels 的情况下保存数据。

解决办法: -“保存”按钮调用一个 javascript 函数,该函数序列化所有字段内容(客户端) - javascript 函数调用 Web 方法(服务器端) - Web方法反序列化数据并将其保存到数据库。

我做得对吗?

The problem: I have a data entry form. I would like to save the data without page roundtrip or UpdatePanels.

The solution:
- the 'Save' button calls a javascript function which serialize all the fields content (client side)
- the javascript function calls a web method (server side)
- the web method deserialize the data and save it to the database.

Am I doing right?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绮烟 2024-10-04 18:14:44

一句话:是的


不止一句话:是的,你正在以一种很好的实现方式来做这件事。

需要考虑的点是服务的安全性(如果在公共站点上)、数据方法的序列化 - json 可能最容易处理客户端和服务器端。

In a word: yes


In more than a word: yes you are doing it one way which is a good implementation.

Points to think about are security of the service (if on a public site), serialisation of the data methods - json is probably easiest to process both client side and server side.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文