我有我的.cshtml
頁面鏈接到一個SSRS報告:追加輸入字段值的URL上.cshtml頁
<div class="col-md-8">
<a href="http://xxx.xx.xx.x/ReportServer/Pages/ReportViewer.aspx?%2fCompany_Reporting%2fpayr0001&rs:Command=Render&StartDate=01/09/2017" target="_blank" >Timesheet Status Report</a>
</div>
我需要從傳遞值我日期控制作爲相對於上述硬編碼日期的參數:
<div class="form-group">
<input type="date" class="form-control" id="datefrom">
</div>
我曾嘗試追加一個onclick=myfunction()
到URL添加日期值,但無法讓它工作。
function getStartDate() {
return document.getElementById("datefrom").value;
}
任何幫助將不勝感激。
乾杯。
你可以顯示你試圖添加的onclick函數嗎? – PredatorIWD
這是什麼'myfunction()'做的?只是發佈HTML不會讓我們知道實際發生的情況 – Se0ng11
– Kathleen