string strSql="select top 5 * from news ORDER BY adddate DESC";
string title;
OleDbConnection conn=new OleDbConnection(connStr);
OleDbCommand  selCmd=new OleDbCommand(selSql,conn);
OleDbDataReader sdr;
try
{
conn.Open ();
sdr=selCmd.ExecuteReader ();
while(sdr.Read ())
{

title =sdr["Title"].ToString ();

}
}
catch(System.Exception ex)
{
throw new Exception (ex.Message );
}
finally
{
conn.Close ();
}请问怎么用 title 获取读取来的这5条新闻全部的标题,是5条信息的标题,中间最好有分割。请教·