我想通过经典 ASP 传递 SQL Server Reporting Services 的凭据,因为当前用户每次尝试访问报告时都被要求输入用户名和密码。
我可以使用 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>