从 ASP.NET 中的 POST 方法检索数据
我正在使用 ASP.NET。
有一个系统需要将数据发布到我的网站,他们只要求我向他们提供一个 URL。 所以我给了他们我的 URL http://www.example.com/Test.aspx。
现在我不知道他们是如何发布它的,但现在在我的 Test.aspx 页面上我需要编写代码来将该数据保存到数据库中。
但是这将如何工作以及我必须在 Test.aspx 页面上做什么?
我在页面加载事件中编写了一些代码,该代码向我发送一封有关页面加载的电子邮件,以查看它们是否确实点击了页面,但它们看起来并不均匀?
I am using ASP.NET.
There is a system that needs to POST data to my site and all they asked for is for me to provide them with a URL.
So I gave them my URL http://www.example.com/Test.aspx.
Now I do not know exactly how they POST it but now on my Test.aspx page I need to write code that will save that data to a database.
But how would this work and what must I do on my Test.aspx page?
I wrote some code in my Page Load Event that sends me an email on Page Load to see if they actually hit the page and it does not seem like they are even?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请求中的数据(内容、输入、文件、查询字符串值)全部位于此对象 HttpContext.Current.Request 上
阅读发布的内容
浏览所有输入
The data from the request (content, inputs, files, querystring values) is all on this object HttpContext.Current.Request
To read the posted content
To navigate through the all inputs
代码将表单值发布到页面上。
您可以使用类似于此 (C#)或此 (VB) 的
一旦获得所需的值,您就可以构建 SQL 语句并将数据写入数据库。
You can get a form value posted to a page using code similiar to this (C#) -
or this (VB)
Once you have the values you need you can then construct a SQL statement and and write the data to a database.
您需要检查(在/快速监视上放置断点)请求
Test.aspx.cs
文件的Page_Load
方法中的 对象。You need to examine (put a breakpoint on / Quick Watch) the Request object in the
Page_Load
method of yourTest.aspx.cs
file.