最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

repeater 分列顯示以及布局的實例代碼

 更新時間:2013年03月19日 20:37:53   作者:  
repeater 分列顯示以及布局的實例代碼,需要的朋友可以參考一下

前臺

復制代碼 代碼如下:

<div>
        <table>
            <tr>
                <asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="Repeater1_ItemDataBound">
                    <ItemTemplate>
                        <td>
                            <table>
                                <tr>
                                    <td colspan="2">
                                        <img src='<%#"images/"+Eval("FoodPicture") %>' />
                                    </td>
                                </tr>
                                <tr>
                                    <td colspan="2">
                                        <asp:Label ID="Label1" runat="server" Text='<%#Eval("FoodName") %>'></asp:Label>
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <asp:Label ID="Label2" runat="server" Text=' <%#Eval("FoodPrice") %>'></asp:Label>
                                    </td>
                                    <td>
                                        <input type="image" src="images/product_add.png" onclick="product_add() " />
                                        <%--    <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="images/product_add.png" />--%>
                                        <asp:TextBox ID="TextBox1" Text="1" runat="server" Width="15px" ReadOnly="True"></asp:TextBox>
                                        <input type="image" src="images/product_reduce.png" onclick="product_reduce()" />
                                        <%--<asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="images/product_reduce.png" />--%>
                                    </td>
                                </tr>
                                <tr>
                                    <th colspan="2">
                                        <asp:ImageButton ID="ImageButton3" ImageUrl="images/btn_order.gif" runat="server" />
                                    </th>
                                </tr>
                            </table>
                        </td>
                    </ItemTemplate>
                </asp:Repeater>
            </tr>
        </table>
    </div>


后臺

復制代碼 代碼如下:

  public   int i = 1;               

protected void Page_Load(object sender, EventArgs e)

        {

            string sqlstr = @"data source=PC-LENOVE\SQLEXPRESS;initial catalog=KFC;USER ID=SA;PASSWORD=abing520";

            SqlConnection con = new SqlConnection(sqlstr);

            SqlCommand cmd = new SqlCommand();

            cmd.CommandText = "SELECT * FROM Foods";

            cmd.Connection = con;

            SqlDataAdapter adapter = new SqlDataAdapter(cmd);

            DataTable dt = new DataTable();

            adapter.Fill(dt);

            cmd.Dispose();

            con.Dispose();

            this.Repeater1.DataSource = dt;

            this.Repeater1.DataBind();

        }

        protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)

        {

            if (i % 4 == 0)//4是一行顯示列數(shù)

            {

                e.Item.Controls.Add(new LiteralControl("</tr><tr>"));

            }

            i++;

        }


相關文章

最新評論

泰兴市| 镇康县| 达拉特旗| 蛟河市| 民勤县| 绵竹市| 吉安县| 上思县| 康平县| 天全县| 古浪县| 明水县| 股票| 鹤庆县| 精河县| 饶平县| 独山县| 二连浩特市| 福州市| 罗平县| 会泽县| 五指山市| 陇西县| 兴安盟| 乌海市| 盖州市| 门源| 山东省| 额敏县| 安塞县| 屯昌县| 中江县| 乐陵市| 东乌珠穆沁旗| 汉川市| 蓝山县| 广德县| 北辰区| 察雅县| 金昌市| 张家界市|