Hi
I have below code. I want that videos should automatically execute one after the other in chrome browser
protected void Page_Load(object sender, EventArgs e)
{
BindData();
}
private void BindData()
{
string strConnString = ConfigurationManager.ConnectionStrings["Cnn"].ConnectionString;
using (SqlConnection con = new SqlConnection(strConnString))
{
using (SqlCommand cmd = new SqlCommand())
{
cmd.CommandText = "SELECT Id, Description FROM videos";
cmd.Connection = con;
con.Open();
DataList1.DataSource = cmd.ExecuteReader();
DataList1.DataBind();
con.Close();
}
}
}
Thanks