0
jQuery的功能,所以我有這個jQuery功能Fireing與計時器滴答
function lbviewmore_click() {
erAlert();
}
我想,如果在一定時間之後被解僱,所以我創造了這個。
protected void Page_Load(object sender, EventArgs e)
{
alerts = DBExecute("exec testingt ", cs);
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Enabled = true;
aTimer.Elapsed += new ElapsedEventHandler(timer_Tick);
aTimer.Start();
}
protected void rawr()
{
ClientScript.RegisterClientScriptBlock(this.GetType(), "blah", "lbviewmore_click();", true);
}
private void timer_Tick(object source, ElapsedEventArgs e)
{
rawr();
alerts2 = DBExecute("exec testingt ", cs);
if (alerts.Count == alerts2.Count)
{
}
else
{
}
//this.ClientScript.RegisterStartupScript(this.GetType(), "test", "lbviewmore_click()", true);
//System.Timers.Timer aTimer = new System.Timers.Timer();
//aTimer.Elapsed += new ElapsedEventHandler(timer_Tick);
//aTimer.Interval = 1000;
//aTimer.Enabled = true;
}
如果我將clientscript放在button_click中,它會運行。但我想在其他部分。任何幫助將不勝感激。
您是否希望在某段時間後彈出該按鈕,無論該按鈕是否被點擊?..?如果是這樣,那麼從這裏開始或做一個谷歌搜索如何自動彈出警報時,沒有在網頁上的活動.. http://forums.asp.net/t/1899214.aspx?If+no+activity+for+ 15 +分鐘+顯示+一個+提醒+ + +網頁+ + +然後+任一+繼續+或+註銷 – MethodMan
約定的要求很差,你爲什麼混合使用c#asp.net和jquery,似乎很奇怪...你正在努力做什麼......你在問這個問題之前是否至少做了一些搜索 – Seabizkit
我不想點擊按鈕。當我把「rawr();」到頁面加載jquery運行良好,或者如果我把它放在一個按鈕。但我希望這個jquery每25秒運行一次。我現在將它設置爲5秒進行測試。它也會出現在其他語言中,但又是爲了測試它是否在if語句之外。 – KratosMafia