DataTable dt = new DataTable();
DataRow dr = new DataRow();
for (int i = 0; i < templist.Length;i++ )
{
string sql = "select * from user_mp3 where id='" + Convert.ToInt32(templist[i]) + "'";
dr[i] = bllcontent.GetRow(sql);
}