数据源不支持服务器端的数据分页

if(!this.IsPostBack){stringnewsTypeID=Request.QueryString["TypeID"].ToString();SqlCon... if(!this.IsPostBack)
{
string newsTypeID = Request.QueryString["TypeID"].ToString();
SqlConnection con = DB.createConnection();
con.Open();
SqlCommand cmd = new SqlCommand("select newsTypeName from newsType where newsTypeID='" + newsTypeID + "'",con);
this.Label1.Text = Convert.ToString(cmd.ExecuteScalar());
cmd.CommandText = "select * from newsTile where newsTypeID='" + newsTypeID + "'";
SqlDataReader sdr = cmd.ExecuteReader();
this.GridView1.DataSource = sdr;
this.GridView1.DataBind();
}

知道要用Dataset 不知道怎么改啊
展开
 我来答
百度网友6cf810b68
2007-09-07 · TA获得超过946个赞
知道大有可为答主
回答量:1403
采纳率:0%
帮助的人:1521万
展开全部
很简单的.

因为你是SqlDataReader sdr = cmd.ExecuteReader(); 来绑定..
SqlDataReader是只能向前的记录集..是不支持分页的.

你改成用datatable来绑定就可以了.

一定绑定控件都是用这个来绑定的..以后要注意了.
制作剪贴短视频
2007-09-07 · TA获得超过114个赞
知道小有建树答主
回答量:213
采纳率:0%
帮助的人:127万
展开全部
f(!this.IsPostBack)
{
string newsTypeID = Request.QueryString["TypeID"].ToString();
SqlConnection con = DB.createConnection();
con.Open();
string sqlstr= "select * from newsTile where newsTypeID='" + newsTypeID + "'";
SqlDataAdapter da = new SqlDataAdapter(sqlstr,con);
DataSet ds = new DataSet();
da.Fill(ds);
GridView1.DataSource = ds.Tables[0].DefaultView;
GridView1.DataBind();
}
这样就行了啊,看清楚了啊,呵呵
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bbcyyb
2007-09-06 · TA获得超过112个赞
知道答主
回答量:44
采纳率:0%
帮助的人:0
展开全部
if(!this.IsPostBack)
{
string newsTypeID = Request.QueryString["TypeID"].ToString();
SqlConnection con = DB.createConnection();
con.Open();
SqlCommand cmd = new SqlCommand("select newsTypeName from newsType where newsTypeID='" + newsTypeID + "'",con);
this.Label1.Text = Convert.ToString(cmd.ExecuteScalar());
cmd.CommandText = "select * from newsTile where newsTypeID='" + newsTypeID + "'";
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet(); da.Fill(ds);
GridView1.DataSource = ds.Tables[0].DefaultView;
GridView1.DataBind();
最后四排改成了用Dataset来进行,这样就可以用数据分页。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式