因此,我想完全從代碼發佈到同一個域內的表單。除了如何包含表單數據之外,我想我擁有我需要的一切。我需要包括的值是從隱藏字段和輸入字段,我們姑且稱之爲:從C#發佈html表單代碼
<input type="text" name="login" id="login"/>
<input type="password" name="p" id="p"/>
<input type = hidden name="a" id="a"/>
我至今是
WebRequest req = WebRequest.Create("http://www.blah.com/form.aspx")
req.ContentType = "application/x-www-form-urlencoded"
req.Method = "POST"
怎樣包括在這三個輸入字段的值請求?
這個問題的答案之一:http://stackoverflow.com/questions/2962155/c-sharp-web-request-with-post-encoding-question建議看看這個網頁:http:// geekswithblogs.net/rakker/archive/2006/04/21/76044.aspx我認爲正是你需要的。最相關的部分是代碼末尾的EncodeAndAddItem()方法以及如何使用該方法。 – JLRishe
[.net後表單在代碼後面]的可能重複(http://stackoverflow.com/questions/11394229/net-post-form-in-code-behind) –
我認爲我的情況與那個稍有不同。我不想在代碼中重新生成表單值。 – user609926