我需要將文本框數據傳遞給控制器按鈕單擊操作。這裏是我的代碼:將按鈕單擊文本框值傳遞給控制器?
<input id="txt" type="text">
<button onclick="@Url.Action("MyAction", "Mycontroller", new {currencyCode=ViewBag .currencyCode,endDate=Model.StartDate, value entered in txt above})" >
我不能在這裏使用表格。你能否建議我如何訪問/傳遞這個價值觀?
感謝您的幫助和指導。
你的控制器只能與POST數據或GET一起工作嗎? –