我正在使用MVC構建電影應用程序。 CRUD是由Visual Studio自動爲我創建的。現在,我正在嘗試爲用戶構建一個搜索功能。這是我寫的代碼:如何將文本框中輸入的值傳遞給操作方法
@using (Html.BeginForm("SearchIndex", "Movies", new {searchString = ??? }))
{
<fieldset>
<legend>Search</legend>
<label>Title</label>
<input type ="text" id="srchTitle" />
<br /><br />
<input type ="submit" value="Search" />
</fieldset>
}
我已經建立了SearchIndex方法與相關視圖。我只是無法找到如何將文本框中輸入的值傳遞給SearchIndex操作方法。 請幫忙。