3
我想通過傳統的ASP傳遞SQL Server Reporting Services的憑據,因爲每次他嘗試訪問報告時都要求用戶輸入用戶名和密碼。通過經典ASP將憑據傳遞到報告服務
我可以使用POST方法將它作爲參數傳遞給頁面嗎?
如此代碼:
<body>
<form id="frmRender" action="ReportViewer" method="post" target="Main">
<input type="text" name="ID" value="" />
<input type="text" name="Password" value="" />
<input type="submit" value="View Report" />
</form>
</body>