我正在尝试在计时器的滴答事件中注册脚本,但什么也没发生,
protected void UpdateTimer_Tick(object sender, EventArgs e)
{
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "script", "ShowDialog()", true);
}
也试过ScriptManager.RegisterStartupScript
了,但它不起作用。尝试调用简单警报但效果不佳。