且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

从外部URL参数读取

更新时间:2023-02-22 15:15:29

您可以尝试一下
You can try this
private string GetHtmlFromUrl(string url)
        {
            HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);

            using (Stream stream = request.GetResponse().GetResponseStream())
            {
                using (StreamReader reader = new StreamReader(stream))
                {
                    string response = reader.ReadToEnd();
                    return response;
                }
            }
        }



如果有帮助,请投票并接受答案.



Please vote and Accept Answer if it Helped.


string value = Request.QueryString["parameterName"];


定义远程".如果您同时控制两个站点:

0)您可以让远程"站点将查询字符串发送到另一个网页,该网页可以执行您可能需要的任何处理

1)Yu可以将查询字符串保存到与另一个可以定期请求接收数据的网站共享的数据库中.

如果您无法控制远程站点,那么您很不走运.
Define "remote". If you have control over both sites:

0) You can have the "remote" site send the query string to another web page that can perform whatever processing you might require

1) Yu can save the query string to a database shared with another web site that can periodically request rceent data.

If you don''t have control over the remote site, you''re pretty much out of luck.