URL에 따라 웹 출력 데이터 읽기
5884 단어 url
public static string HttpSMSPost(HttpWebRequest hr, string url, string parameters)
{
string strRet = null;
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] data = encoding.GetBytes(parameters);
try
{
hr.KeepAlive = false;
hr.Method = "POST";
hr.ContentType = "application/x-www-form-urlencoded";
hr.ContentLength = data.Length;
Stream newStream = hr.GetRequestStream();
newStream.Write(data, 0, data.Length);
newStream.Close();
HttpWebResponse myResponse = (HttpWebResponse)hr.GetResponse();
StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.Default);
strRet = reader.ReadToEnd();
reader.Close();
myResponse.Close();
return strRet;
}
catch (Exception ex)
{
strRet = "-200";
}
return strRet;
}
사용:
string url = http://test.com/Login.asp;
string SMSparameters = "UserID=" + Userid + "&Account=" + Account + "&Password=" + PassWord;
string targeturl = url.Trim().ToString();
HttpWebRequest hr = (HttpWebRequest)WebRequest.Create(targeturl);
hr.CookieContainer = cookieContainerSMS;
string res = httpPost.HttpSMSPost(hr, url, SMSparameters);
XmlDocument xml = new XmlDocument();
xml.LoadXml(res);
string errorNum = xml.SelectSingleNode("/LANZ_ROOT/ErrorNum").InnerText; //
ActiveID = xml.SelectSingleNode("/LANZ_ROOT/ActiveID").InnerText; // ActiveID
if (errorNum == "0")
{
//this.Close();
Response.Write(" ");
}
else
{
Response.Write("<script>alert(' ')</script>");
//this.Close();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
URL의 경로 이름을 찾는 방법 - Javascript이 기사에서는 string를 URL로 변환하고 URL(Uniform Resource Locator) 속성을 조작하는 방법에 대한 지식을 공유합니다. 시작하자 🚀 애플리케이션에서 사용하려면 현재 웹 페이지의 URL에서...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.