ページを自動的に更新するには、これを使用>>
<meta http-equiv="refresh" content="15">
または
On_Load イベント書き込みでは、
Response.AppendHeader("Refresh", "15")
On_Load イベントでは、これによってシステムから現在の時刻のみを取得します>>
try
{
string curr_time= DateTime.Now.ToShortTimeString();
da=new SqlDataAdapter("select SpeechName from Speeches where SpeechTime<'"+curr_time+"'",conn);
DataSet ds=new DataSet();
da.fill(ds);
for(int i=0;i<ds.Tables[0].Rows.Count;i++)
string speechName=ds.Tables[0].Rows[i][0].toString();//This will give you last speech within that time.
}
catch(Exception ex)
{
}
データベースの時間値と比較すると、現在の音声を見つけることができます。