有没有一种方法可以轻松地将表单输入序列化为 xml 或 yaml 以便数据库存储?
我正在处理一个使用 asp 经典 vbscript 的旧应用程序。我想将表单的输入存储在数据库文本字段中,因为表单字段会频繁更改,而且我不想规范化旧数据库。
vbscript 中的序列化有什么解决方案吗?
谢谢你!
I am dealing with an old app in asp classic vbscript. I'd like to store the input of a form in a database text field as the form fields are a subject to frequent change and I don't feel like normalizing the old database.
Any solutions for serialization in vbscript?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试并使用 Form 集合。
Request.Form
http://www.w3schools.com/ASP/showasp.asp ?filename=demo_simpleform1
专业提示 - 将数据解析为 xml 格式。然后您就有更多使用数据的选择。
Try and use the Form collection.
Request.Form
http://www.w3schools.com/ASP/showasp.asp?filename=demo_simpleform1
ProTip - parse data into xml format. Then you have many more options for using the data.
我刚刚在 jscript for asp classic 中找到了这个 json 实现。
http://tforster.wik.is/ASP_Classic_Practices_For_The_21st_Century/JSON4ASP
I just found this json implementation in jscript for asp classic.
http://tforster.wik.is/ASP_Classic_Practices_For_The_21st_Century/JSON4ASP