发表评论或者留言需要审核,请不要发AD或者涉及敏感词汇
欢迎优秀个人博客交换首页链接(PR 4以下或者被K的勿扰,非博客要求PR 5以上)
欢迎优秀个人博客交换首页链接(PR 4以下或者被K的勿扰,非博客要求PR 5以上)
Sep
17
项目里一直用DataGrid/WebGrid,几乎快要忘记这个控件了
刚好前阵子打算自己边学边写点东西,要用的,拿来温故下
今天开始,不定期放些相关内容备忘&分享
Aspx文件
<ASP:REPEATER id="MyRepeater" runat="server">
<HeaderTemplate>
<table id="Table2" style="BORDER: #000000 1px dashed;font-size:12px;Z-INDEX: 109; LEFT: 300px; POSITION: absolute; TOP: 250px" cellSpacing="1" cellPadding="1" width="240">
<tr style="background-color:DFA894">
<th>Publisher ID </th>
<th> Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr style="background-color:FFECD8">
<td>
<%# DataBinder.Eval(Container.DataItem, "pub_id") %>
</td>
<td>
<%# DataBinder.Eval(Container.DataItem, "price", "$ {0}") %>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</TABLE>
</FooterTemplate>
</ASP:REPEATER>
*.VB文件

刚好前阵子打算自己边学边写点东西,要用的,拿来温故下
今天开始,不定期放些相关内容备忘&分享

Aspx文件
<ASP:REPEATER id="MyRepeater" runat="server">
<HeaderTemplate>
<table id="Table2" style="BORDER: #000000 1px dashed;font-size:12px;Z-INDEX: 109; LEFT: 300px; POSITION: absolute; TOP: 250px" cellSpacing="1" cellPadding="1" width="240">
<tr style="background-color:DFA894">
<th>Publisher ID </th>
<th> Price</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr style="background-color:FFECD8">
<td>
<%# DataBinder.Eval(Container.DataItem, "pub_id") %>
</td>
<td>
<%# DataBinder.Eval(Container.DataItem, "price", "$ {0}") %>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</TABLE>
</FooterTemplate>
</ASP:REPEATER>
*.VB文件





