我需要爲ashx頁面中的隱藏字段值指定文件名稱變量,如何將值賦給ashx頁面中的隱藏字段?在ashx頁面中分配隱藏的字段值?
.ashx的頁面
public void ProcessRequest(HttpContext context)
{
var file = context.Request.Files[0];
//here i need to pass this file name in hidden field value
}
這是隱藏的申請目前aspx頁面
<asp:HiddenField ID="hdnFileName" runat="server"/>
這沒有任何意義;該頁面不存在任何地方。 – SLaks 2012-07-23 19:26:44
嗨,我想保存文件名稱我得到的文件處理程序ie是ashx頁面,我想在webservcie中使用它,那麼我該怎麼做呢? – user1527989 2012-07-23 19:29:12