zoukankan      html  css  js  c++  java
  • WebForm控件Repeater

    我们会发现用拼接字符串来显示一个查询非常的麻烦,有一个控件Repeater帮助你,省去写Foreach

    LinQ to SQL类

    函数类:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    /// <summary>
    /// fruitDA 的摘要说明
    /// </summary>
    public class fruitDA
    {
        private DataClasses2DataContext context;
        public fruitDA()
        {
            context = new DataClasses2DataContext();
        }
        public List<fruit> select()
        {
            return context.fruit.ToList();
        }
        public string FriutName(int a)
        {
            var query = context.fruit.Where(p=>p.ids==a);
            if (query.Count() > 0)
            {
                return query.First().name;
            }
            return null;
    
        }
        public decimal FruitPrice(int a)
        { 
        var query = context.fruit.Where(p=>p.ids==a);
        if (query.Count() > 0)
        {
            return Convert.ToDecimal( query.First().price);
    
        }
        return 0;
        }
    
    }

    新建一页面,BODY中DIV加入Literal标签 后台写函数

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
    
    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div align="center">
           <asp:Literal ID="Literal1" runat="server"></asp:Literal>
         <asp:Repeater ID="Repeater1" runat="server">
                <HeaderTemplate>               
                    <table><tr><td style="color:greenyellow">果果</td>
                        <td style="color:greenyellow">价格</td>
                        <td style="color:greenyellow">哪里滴</td>
                        <td style="color:greenyellow">库存</td></tr>
                        </HeaderTemplate>
                    <ItemTemplate>
                    <tr bgcolor="Yellow"><td><%#Eval("name") %></td>
                        <td><%#Eval("price") %></td>
                        <td><%#Eval("source") %></td>
                        <td><%#Eval("numbers") %></td>
                        <td><a href='Default3.aspx?ids=<%#Eval("ids") %>'>购买</a></td></tr> 
                    </ItemTemplate>
                <AlternatingItemTemplate>
                    <tr bgcolor="#f3e"><td><%#Eval("name") %></td>
                        <td><%#Eval("price") %></td><td><%#Eval("source") %></td>
                        <td><%#Eval("numbers") %></td>
                        <td><a href='Default3.aspx?ids=<%#Eval("ids") %>'>购买</a> </td></tr>
                </AlternatingItemTemplate>
                <FooterTemplate> </table></FooterTemplate>
             
            </asp:Repeater>       
       
        </div>
        </form>
    </body>
    </html>
    Repeater里面有5个标签,4个常用
    <HeaderTemplate>:添加表头.
     <ItemTemplate>:类似于Body要查的数据引用C#代码 <%#Eval("列名")%> 用来传值.
     <AlternatingItemTemplate>: 与<ItemTemplate>替换,先显示<ItemTemplate>.
    <FooterTemplate>:表的脚.
    后台绑定代码:
    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    
    public partial class Default2 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Literal1.Text =f;
            Repeater1.DataSource = new fruitDA().select();
            Repeater1.DataBind();
    }
    }

    这里绑定一个List<>泛型集合,最后要执行绑定 Repeater1.DataBind();
  • 相关阅读:
    jQuery选择器
    asp.net 操作 excel 出现 class 组件错误 或 打开文件错误
    [转]Win7、Windows Server 2008下无法在Windows Service中打开一个已经存在的Excel 2007文件问题的解决方案
    Microsoft Excel 不能访问文件“ 文件名称或路径不存在。 • 文件正被其他程序使用。 • 您正要保存的工作簿与当前打开的工作簿同名。
    页面打印 css
    如何在excel数据透视表的顶部显示列总计
    asp中javascript或jquery如果在body中 且需要页面元素 则需要放在最后
    sqlserver游标使用
    excel 冻结多行
    Request.Form("cardno").Item(y) 的count总是为0
  • 原文地址:https://www.cnblogs.com/18553325o9o/p/4672151.html
Copyright © 2011-2022 走看看