111,120
社区成员
发帖
与我相关
我的任务
分享
DataList dl = yourDataList;
DataTable dt = get...("好");
if (dt.Rows.Count == 1)
{
Response.Redirect("yourPage.html");
}
else if (dt.Rows.Count > 1)
{
yourDataList.DataSource = dt; yourDataList.Databind();
}