zoukankan      html  css  js  c++  java
  • Repeater的使用及其鼠标特效,行链接的使用

    原文发布时间为:2009-04-22 —— 来源于本人的百度文章 [由搬家工具导入]

    <asp:Repeater ID="rpt" runat="server">
            <HeaderTemplate>
                <tr>
                    <td style=" 12%">
                        字段名</td>
                    <td style=" 23% ">
                        字段名</td>
                    <td style=" 23% ">
                        字段名</td>
                    <td style=" 12% ">
                        字段名</td>
                    <td style=" 18% ">
                        字段名</td>
                    <td style=" 12% ">
                        字段名</td>
                </tr>
            </HeaderTemplate>
            <ItemTemplate>
                <a onclick='openPage(<%#Eval("Id")%>)' target="_blank">
                    <tr style="cursor: pointer;" onmouseover="c=this.style.backgroundColor;this.style.backgroundColor='AliceBlue';"
                        onmouseout="this.style.backgroundColor=c;" title="点击打开网页">
                        <td style=" 12%;">
                            <%#Eval("a")%>
                        </td>
                        <td style=" 23%;">
                            <%#Eval("b")%>
                        </td>
                        <td style=" 23%;">
                            <%#Eval("c")%>
                        </td>
                        <td style=" 12%;">
                            <%#Eval("d")%>
                        </td>
                        <td style=" 18%;">
                            <%# DateTime.Parse(Eval(" Date").ToString()).ToString("yyyy-MM-dd")%>
                        </td>
                        <td style=" 12%;">
                            <%#Eval("e")%>
                        </td>
                    </tr>
                </a>
            </ItemTemplate>
        </asp:Repeater>
  • 相关阅读:
    使用BC库解密出现no such provider错误
    使用PyHive操作Hive
    使用Python实现Map Reduce程序
    Mysql问题
    安装Python2.7出现configure: error: no acceptable C compiler found in $PATH错误
    crontab入门
    Linux命令-dd
    Linux命令-cp
    Linux命令-mkdir
    RHEL7.2下netcat工具安装教程
  • 原文地址:https://www.cnblogs.com/handboy/p/7153327.html
Copyright © 2011-2022 走看看