0
我應該使用C#將一些數據發佈到一個站點。我可以通過使用簡單的HTML代碼進行發佈。但我不希望任何用戶能夠查看源代碼。C#POST並被轉移到另一個站點(https)
我的基本代碼是:
WebRequest request = WebRequest.Create("https://blabla.bla");
request.ContentType = "application/x-www-form-urlencoded";
byte[] bytes = Encoding.ASCII.GetBytes(parameters);
request.Method = "POST";
try
{
request.ContentLength = bytes.Length;
request.GetRequestStream().Write(bytes, 0, bytes.Length);
}
catch (Exception e)
{
}
finally
{
if (request.GetRequestStream() != null)
{
request.GetRequestStream().Close();
}
}
該職位的數據。但是,如果我想轉到url並帶上所需的變量,我該怎麼辦?它甚至有可能嗎?我想轉移到的網站是https。
從哪裏轉讓?對於你需要哪些變量? – 2010-08-31 11:21:52