나는이 세 헬퍼를 같은 줄에 표시하려고합니다.MVC 뷰에서 @Html htmlhelper와 @using를 같은 줄에 표시하는 방법은 무엇입니까?
팝업은 버튼 클릭시 자세를 묻지 않습니다.
그러나 버튼이 내가 사용 @using을 만드는 오전 다음 줄에 표시됩니다
<td>
@Html.ActionLink("Edit", "Edit", new { id = item.EmployeeId }) |
@Html.ActionLink("Details", "Details", new { id = item.EmployeeId }) |
@using (Html.BeginForm("Delete", "BusinessLayer", new { id = item.EmployeeId }))
{
<input type="submit" value="Delete" onclick="return conform('Are you sure you want to delete record with EmployeeId = @item.EmployeeId')" />
}
</td>
내가 같은 줄에 표시 할 수있는 방법이 있습니까.
* CSS * * ASP.NET MVC * –
으로 변환되지 않았습니다. 표 또는 가로 목록을 사용하는 것처럼 HTML을 사용하여 작성할 수 있지만 CSS는 어떻게 작성합니까? –
'confirm'하지 않습니다'conform' https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm – ADyson