帮忙看一下为什么只能显示最后一项(C#)

inti;//stringFilePath=Path.Combine(Request.PhysicalApplicationPath,"App_Data/content.... int i;
//string FilePath = Path.Combine(Request.PhysicalApplicationPath, "App_Data/content.MDB");
string CSstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:/程序设计/ASP.NET(C#)/留言板/App_Data/content.mdb";
OleDbConnection MyCon = new OleDbConnection(CSstring);
string SQLstring = "Select * From content where Face='1'";
string[] strRow = new string[7];
try
{
MyCon.Open();
Response.Write("成功连接!");
}
catch (OleDbException E)
{
Response.Write(E.Message);
}
OleDbCommand MyCom = new OleDbCommand();
MyCom.Connection = MyCon;
MyCom.CommandType = CommandType.Text;
MyCom.CommandText = SQLstring;
OleDbDataAdapter MyDataAdapter = new OleDbDataAdapter();
MyDataAdapter.SelectCommand = MyCom;

DataSet MyDataSet = new DataSet();
MyDataAdapter.Fill(MyDataSet, "content");//填充数据集
for (i =0; i<MyDataSet.Tables["Content"].Rows.Count-1; i++) ;//遍历数据集
{
Response.Write("行数:"+MyDataSet.Tables["content"].Rows.Count);
strRow[0] = MyDataSet.Tables["content"].Rows[i]["Index"].ToString();
strRow[1] = MyDataSet.Tables["content"].Rows[i]["Name"].ToString();
strRow[2] = MyDataSet.Tables["content"].Rows[i]["Email"].ToString();
strRow[3] = MyDataSet.Tables["content"].Rows[i]["Face"].ToString();
strRow[4] = MyDataSet.Tables["content"].Rows[i]["Content"].ToString();
strRow[5] = MyDataSet.Tables["content"].Rows[i]["userIP"].ToString();
strRow[6] = MyDataSet.Tables["content"].Rows[i]["Time"].ToString();
Response.Write("<hr/> 编号:" + strRow[0]);
Response.Write("<br /> 姓名:" + strRow[1] + "<br />Email:" +strRow[2] +
"<br />留言内容:" + strRow[4] + "<br /> IP:" + strRow[5] + "<br />留言时间:" +
strRow[6] + "<br />");
}
MyCon.Close();
展开
 我来答
百度网友253cc80
2008-01-12 · 超过18用户采纳过TA的回答
知道答主
回答量:69
采纳率:0%
帮助的人:50万
展开全部
System.Web.UI.WebControls.PagedDataSource pds = new PagedDataSource();
pds.DataSource = ds.Tables["content"].DefaultView;
pds.AllowPaging = true;
pds.PageSize = 2;
pds.CurrentPageIndex=curPage-1;

绑定下就OK!!

原因是DS没有分页功能,只能借助视图模式,才可以分页!!
我是新手,还没有一个月,呵呵,我看过这个关于他的实例
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友5dd7660b9
2008-01-12 · TA获得超过251个赞
知道小有建树答主
回答量:452
采纳率:0%
帮助的人:447万
展开全部
Response.Write 只有最后一个才有效,只能向客户端输出一次,不能累计
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
smalltrees
2008-01-12
知道答主
回答量:11
采纳率:0%
帮助的人:0
展开全部
Response.Write只输出了一条记录!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式