ASP中表格固定大小,不随内容多少改变的代码
时间: 2024-09-21 20:06:22 浏览: 50
在ASP中,如果你想要创建一个固定的表格大小,即无论表格中的内容有多少,表格外框都保持不变,可以在HTML `<table>` 标签中使用 CSS 来设置宽度和高度。下面是一个简单的例子:
```asp
<%@ Page Language="VB" AutoEventWireup="false" CodeBehind="YourPage.aspx.vb" %>
<!DOCTYPE html>
<html>
<head>
<style>
.fixed-table {
width: 500px; /* 设置表格宽度 */
height: 300px; /* 设置表格高度 */
table-layout: fixed; /* 确保内容不会自动换行 */
}
</style>
</head>
<body>
<table class="fixed-table">
<tr>
<th>列1</th>
<th>列2</th>
</tr>
<%-- 添加你的表格行,比如 --%>
<% For Each row In YourDataSource %>
<tr>
<td><%= row["DataColumn"] %></td>
<td>其他数据</td>
</tr>
<% Next %>
</table>
</body>
</html>
```
在这个例子中,`.fixed-table` 类设置了表格的固定尺寸,并通过 `table-layout: fixed;` 确保内容按照设定的宽度显示,而不会因为内容增加而自动扩展表格。
阅读全文