1
我想將數據從SQL綁定到中繼器控件。我已經嘗試了我通常爲Gridview所做的工作,但它不起作用。我希望看到一個示例,它是使用SQLAdapter還是使用命令中的ExecuteReader。謝謝!Asp.Net將SQL數據綁定到中繼器?
string sql = "SELECT [WallPost], [DatePosted] FROM [WallTable] WHERE [UserId] = '"
+ Request["friend"] + "'";
string strCon =
System.Web.Configuration.WebConfigurationManager.ConnectionStrings["SocialSiteConnectionString"].ConnectionString;
SqlConnection conn = new SqlConnection(strCon);
SqlDataAdapter daUserProfile = new SqlDataAdapter(sql, conn);
dsSocialSite.UserProfileDataTable tbUserProfile =
new dsSocialSite.UserProfileDataTable();
daUserProfile.Fill(tbUserProfile);
rpWall2.DataSource = tbUserProfile; //rpWall2 = repeater control
rpWall2.DataBind();
請出示你嘗試過什麼,以及「不工作」。 – 2009-04-07 22:02:06
太好了。但什麼沒有工作? – 2009-04-07 22:08:47