我想以編程方式將數據發送到網站,然後以編程方式單擊提交按鈕。這是HTML代碼我試圖填補:它不使用webrequest發送文本到網站
<textarea id="rpslBox:postRpsl:rpslObject" name="rpslBox:postRpsl:rpslObject" class="ripe-input-field ui-corner-all" rows="18" style="width:500px;"></textarea>
我使用此C#代碼:
WebRequest request = WebRequest.Create("https://apps.db.ripe.net/syncupdates/simple-rpsl.html ");
// Set the Method property of the request to POST.
request.Method = "POST";
string textarea = "text";
// Create POST data and convert it to a byte array.
string postData = string.Format("rpslBox:postRpsl:rpslObject{0}", textarea);
當我運行此代碼返回頁面的HTML代碼,而不發送本文。我怎樣才能發送這個文本?謝謝你的幫助!
有你也有嘗試設置textarea的內容的任何代碼?這不[msdn頁面](http://msdn.microsoft.com/en-us/library/debx8sh9%28v=vs.110%29.aspx)解釋你應該做什麼? –
其實我不知道如何點擊提交buton。 request.Method =「POST」;足夠 ? –
你試過頁面上的例子嗎? –