1
如何在代碼中複製傳統的POST表單(文件發佈),最終目標是將字節數組作爲文件流入發佈表單中,下面的示例是我試圖在代碼中複製的形式。直接從ASP.net中的字節數組中發佈文件
<form method="POST" action="http://export.writer.zoho.com/remotedoc.im?apikey=[apikey]&output=editor" enctype="multipart/form-data" target="_self">
<input type="file" name="content" size="38"> <br>
<input type="hidden" name="filename" value="mydocument.doc">
<input type="hidden" name="saveurl" value="[REMOTE SERVER SAVE URL]">
<input type="hidden" name="id" value="12345678">
<input type="hidden" name="format" value="doc">
<input type="submit" value="Edit" class="divbutton" name="submit">
</form>
我已經通過讀條,但我看不到我怎麼會納入文件中的數據,從我可以如何做到這一點的例子告訴值連接到請求,它似乎並不像文件數據 – CodeKiwi 2009-07-13 06:39:01