gpt4 book ai didi

html - 动态生成的 HTML 表格 - 如何限制宽度

转载 作者:太空宇宙 更新时间:2023-11-04 16:19:43 24 4
gpt4 key购买 nike

我正在使用 MVC3 创建一个动态表。

但是表格在布局中离开了页面并且没有驻留在共享 div 中?

@{
ViewBag.Title = "Users";
}

<h2>Users</h2>

<p>
@Html.ActionLink("Create New User", "Create")
</p>


<table>
<tr>
<th>
UserID
</th>
<th>
UserName
</th>
<th>
UserForename
</th>
<th>
PW
</th>
<th>
UserTypeID
</th>
<th>
PasswordMustBeChanged
</th>
<th></th>
</tr>

@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.U1_UserId)
</td>
<td>
@Html.DisplayFor(modelItem => item.U1_UserName)
</td>
<td>
@Html.DisplayFor(modelItem => item.U1_UserForename)
</td>
<td>
@Html.DisplayFor(modelItem => item.U1_PW)
</td>
<td>
@Html.DisplayFor(modelItem => item.U1_UserTypeID)
</td>
<td>
@Html.DisplayFor(modelItem => item.U1_PasswordMustBeChanged)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.U1_UserId }) |
@Html.ActionLink("Delete", "Delete", new { id=item.U1_UserId })
</td>
</tr>
}

这是表格,它在共享 layotu @renderbody 中呈现。但是表格并没有留在 div 中..?

最佳答案

只是在黑暗中拍摄,但您似乎有一个额外的 <th></th>在你的标题部分?是故意的吗?

关于html - 动态生成的 HTML 表格 - 如何限制宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6813778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com