2
設置默認按鈕這是我的HTML代碼:如何在ASP.Net MVC
@using (Html.BeginForm("Index", "EmployeeList", FormMethod.Post, new {defaultbutton = "searchBtn" }))
{
@Html.TextBox("SearchString", ViewBag.SearchString as string, new { @id = "SearchString", @class = "form-control", placeholder = "Search Name" })
<button type="submit" name="MyButton" value="Export" class="btn btn-sm btn-danger">
<button type="submit" name="MyButton" value="Search" id="searchBtn" class="btn btn-sm btn-warning">
}
根據我的網頁設計,我必須寫之前,「搜索」按鈕「導出」按鈕的HTML代碼。
雖然我填寫搜索文本'導出'按鈕後按下輸入點擊,而不是我需要'搜索'按鈕點擊。