对象-如何不使用SqlDataSource绑定Datalist,实现查询功能

问题描述

如何不使用SqlDataSource绑定Datalist,实现查询功能


通过这个食物种类和价格区间,查询符合要求的Datalist中的食物。
遇到的问题是,我本来用SqlDataSource控件绑定Datalist的,但是,由于我用了PageDataSource,有两个数据源了,冲突了,我就取消了Datalist前台的SqlDataSource控件。但是在这种情况下,我赶脚查询功能貌似我不会实现了······

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

namespace OnlineOrderingSystem.预定服务
{
    public partial class OrderingService : System.Web.UI.Page
    {
        protected static PagedDataSource ps = new PagedDataSource();
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                Bind(0);
            }

        }
        //进行数据绑定的方法
        public void Bind(int CurrentPage)
        {
            //实例化SqlConnection对象
            SqlConnection sqlCon = new SqlConnection();
            //实例化SqlConnection对象连接数据库的字符串
            sqlCon.ConnectionString = "server=(local);database=Order;uid=sa;pwd=;";
            //定义SQL语句
            string SqlStr = "select * from Food";
            //实例化SqlDataAdapter对象
            SqlDataAdapter da = new SqlDataAdapter(SqlStr, sqlCon);
            //实例化数据集DataSet
            DataSet ds = new DataSet();
            da.Fill(ds, "Food");

            ps.DataSource = ds.Tables["Food"].DefaultView;
            ps.AllowPaging = true; //是否可以分页
            ps.PageSize = 4; //显示的数量
            ps.CurrentPageIndex = CurrentPage; //取得当前页的页码

            this.DataList1.DataSource = ps;
            this.DataList1.DataKeyField = "FoodID";
            this.DataList1.DataBind();
        }

        protected void DataList1_ItemCommand(object source, DataListCommandEventArgs e)
        {
            switch (e.CommandName)
            {
                //以下5个为 捕获用户点击 上一页 下一页等时发生的事件
                case "first"://第一页
                    ps.CurrentPageIndex = 0;
                    Bind(ps.CurrentPageIndex);
                    break;
                case "pre"://上一页
                    ps.CurrentPageIndex = ps.CurrentPageIndex - 1;
                    Bind(ps.CurrentPageIndex);
                    break;
                case "next"://下一页
                    ps.CurrentPageIndex = ps.CurrentPageIndex + 1;
                    Bind(ps.CurrentPageIndex);
                    break;
                case "last"://最后一页
                    ps.CurrentPageIndex = ps.PageCount - 1;
                    Bind(ps.CurrentPageIndex);
                    break;
                case "search"://页面跳转页
                    if (e.Item.ItemType == ListItemType.Footer)
                    {
                        int PageCount = int.Parse(ps.PageCount.ToString());
                        DropDownList ddl = e.Item.FindControl("DropDownList1") as DropDownList;
                        int MyPageNum = 0;
                        MyPageNum = Convert.ToInt32(ddl.SelectedValue);
                        if (MyPageNum <= 0 || MyPageNum > PageCount)
                            Response.Write("<script>alert('请输入页数并确定没有超出总页数!')</script>");
                        else
                            Bind(MyPageNum - 1);
                    }
                    break;
            }
        }
        protected void DataList1_ItemDataBound(object sender, DataListItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Footer)
            {
                //以下六个为得到脚模板中的控件,并创建变量
                Label CurrentPage = e.Item.FindControl("LabelNowPage") as Label;
                Label PageCount = e.Item.FindControl("LabelCount") as Label;
                LinkButton FirstPage = e.Item.FindControl("LinkButtonFirstPage") as LinkButton;
                LinkButton PrePage = e.Item.FindControl("LinkButtonPrePage") as LinkButton;
                LinkButton NextPage = e.Item.FindControl("LinkButtonNextPage") as LinkButton;
                LinkButton LastPage = e.Item.FindControl("LinkButtonLastPage") as LinkButton;
                CurrentPage.Text = (ps.CurrentPageIndex + 1).ToString();//绑定显示当前页
                PageCount.Text = ps.PageCount.ToString();//绑定显示总页数
                if (ps.IsFirstPage)//如果是第一页,首页和上一页不能用
                {
                    FirstPage.Enabled = false;
                    PrePage.Enabled = false;
                }
                if (ps.IsLastPage)//如果是最后一页"下一页"和"尾页"按钮不能用
                {
                    NextPage.Enabled = false;
                    LastPage.Enabled = false;
                }

                DropDownList ddl = e.Item.FindControl("DropDownList1") as DropDownList;
                ddl.Items.Clear();
                for (int i = 1; i <= ps.PageCount; i++)
                {
                    ddl.Items.Add(i.ToString());
                }
            }
        }

        protected void ButtonSelect_Click(object sender, EventArgs e)
        {
            string wheresql;
            if (DropDownListFoodType.SelectedValue == "全部")
            {
                wheresql = "where FoodPrice Between " + TextBoxLowPrice.Text + " And " + TextBoxHighPrice.Text;
            }
            else
            {

                wheresql = "where FoodTypeID =" + DropDownListFoodType.SelectedValue + " and FoodPrice Between " + TextBoxLowPrice.Text + " And " + TextBoxHighPrice.Text;

            }

            SqlDataSource1.SelectCommand = "SELECT  [FoodID],[FoodTypeID],[FoodName],[FoodPrice] ,[FoodIntroduction] ,[FoodCount] ,[FoodImageURL]  FROM [Food] " + wheresql + "order by  [FoodPrice] desc";

           //我原来的思路是通过SqlDataSourceS实现功能,这里还有个Datalist.Bind();
            ViewState["SelectCommand"] = SqlDataSource1.SelectCommand;
        }

    }

}

请问大神们,有没有不用sqlDataSource,实现查询的方法·····
说的比较乱,见谅

解决方案

解决分页的例子。使用DataSet绑定到DataList实现的
DataList嵌套DataList(4. 使用SqlDataSource实现)
使用PagedDataSource类实现DataList和Repeater控件的分页显示功能

解决方案二:

http://www.cnblogs.com/SkySoot/archive/2012/07/25/2608674.html

时间: 2024-09-20 05:33:02

对象-如何不使用SqlDataSource绑定Datalist,实现查询功能的相关文章

GridView和SqlDataSource绑定后依旧无法显示表

问题描述 刚学这方便的--想GridView和SqlDataSource绑定之后,想用实现SqlDataSource动态查询然后返回值给Gridview显示.不知道是不是代码错了--stringfirstname=TextBox1.Text;stringlastname=DropDownList1.Text;DataTabledt=newDataTable();stringconnstr=ConfigurationManager.ConnectionStrings["connectionstri

dev的PropertyGridControl循环绑定对象属性,第一个绑定完后怎么清空propertygrid的数据

问题描述 请教各位大虾,dev控件中的propertyGrid控件可以循环绑定多个对象属性吗?如果可以,绑定第二个对象的时候怎么清空propertyGrid控件中的第一个对象的数据,试了selectobject=null,但是不行..我调试时发现,绑定第二个对象的时候,调试时控件上的selectobject值确实事第二个对象的数据,但是界面上总是显示第一个对象的数据,请问事什么原因呢??有用过这个控件的,请指点一下,急急急. 解决方案 解决方案二:WInform??WPF??

绑定DataList并分页以后(我在DataList中加了一个自定义控件,然后在模板中绑定),点击下一页,DataList内的自定义控件内容不显示(绑不上,但是第一页能显示)

问题描述 1.这是我自定义控件的代码:privatestringpid;publicstringPid{get{returnpid;}set{pid=value;}}protectedvoidPage_Load(objectsender,EventArgse){if(!Page.IsPostBack){OleDbCommandcmd=newOleDbCommand("select*from[product]whereid='"+pid+"'",ConDB.GetCo

ASP.NET 2.0数据教程之四十八:在SqlDataSource中使用参数化查询

返回"ASP.NET 2.0数据教程目录" 导言 在前一节教程中,我们看到了如何使用SqlDataSource控件直接从 数据库中获取数据.通过"配置数据源"向导,我们选择一个特定的 数据库,然后就可以:从一个表或视图中选择一些列:输入一个自定义SQL语句: 使用一个存储过程.不管你是手工输入SQL语句还是在向导页中选择一堆列,反正 最终都是给SqlDataSource控件的SelectCommand属性赋上一个SELECT语句,在 SqlDataSource的Se

微信怎么绑定银行卡支付的功能?

1)在手机中我们先打开[微信5.0]然后找到[我]这里我们点击自己的微信头像就可以编辑个人资料了.   2)现在我们在[我]就可以看到有一个我的银行卡,这里我们点击[+](进行增加银行卡).   3)如下图所示我们现在点击[添加您的银行卡号]选择你自己要绑定微信支付的银行卡类型.银行预留持卡人姓名.身份证.手机号等个人信息,如图所示   4)注意了这个绑定必须是自己注意微信的号,要不收不到短信,如果是的肯定会收到手机短信验证码了,然后我们输入验证码点击[下一步]按钮即可.需要设置微信安全支付6位

JavaScript对象、属性、事件手册集合方便查询_基础知识

windows对象 每个HTML文档的顶层对象. 属性 frames[] 子桢数组.每个子桢数组按源文档中定义的顺序存放. feames.length 子桢个数. self 当前窗口. parent 父窗口(当前窗口是中一个子窗口). top 顶层窗口(是所有可见窗口的父窗口). status 浏览器状态窗口上的消息. defaultStatus 当status无效时,出现在浏览器状态窗口上的缺省消息. name 内部名,为由window.open()方法打开的窗口定义的名字. windows方

dataGridView绑定泛型的筛选功能实现

一次筛选             IList<Model> list = (IList<Model>)dataGridView2.DataSource;             var query = from student in list                         //where student.FormCode.StartsWith(textBox3.Text.Trim())                          where student.

Sqldatasource的查询语句动态绑定。

问题描述 我需要用sqldatasource绑定我动态查询的sql语句.但是现在出现一个问题,我有个select输出字段是一个变量,类似于week1,week2...根据DropDownList的选项确定Select的值,这个在SelectCommand怎么绑定呢?stringsql="selectweek"+weekList.SelectedValue.ToString()+"fromRecord"+"whereweek"+weekList.S

asp.net datalist中的radiobuttonlist绑定

问题描述 asp.net datalist中的radiobuttonlist绑定 datalist里的radiobuttonlist 绑定 dt 有一条数据 str里是分隔有是 a b c d 这里到底应该怎么绑定radiobuttonlist 求大神