Asp.net:使用 PageMethods 保存数据输入表单
问题:我有一个数据输入表格。我想在没有页面往返或 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一句话:是的
不止一句话:是的,你正在以一种很好的实现方式来做这件事。
需要考虑的点是服务的安全性(如果在公共站点上)、数据方法的序列化 - 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.