查询数据库并显示在另一个页面中

protected void submitPhone_Click(object sender, EventArgs e)
{
System.Data.SqlClient.SqlConnection conn = new SqlConnection();
conn.ConnectionString = ConfigurationManager.ConnectionStrings["DateCenter"].ConnectionString;
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter("select * from Fee where '" + CardNO.Text + "'=ClientNO and '" + Name.Text + "'=Name", conn);
conn.Open();
da.Fill(ds);
conn.Close();
}
这是我用来查询数据的代码 弄在查询按钮中
然后打算把数据展示在另一个页面中

另一个页面应该添加什么控件 怎么写 另外 这个是用来在手机上展示的

http://bbs.csdn.net/topics/360140208