ASPX ページで作業していますが、スクリプトが機能しません
以下の更新されたコードを見つけてください。
<script runat="server">
protected void settxtSymbol(object sender, System.EventArgs e)
{
switch ((Timer1.Interval / 3) % 3)
{
case 0: txtSymbol.Value = "GOOG";
break;
case 1: txtSymbol.Value = "MICR";
break;
case 2: txtSymbol.Value = "YHOO";
break;
}
ScriptManager.RegisterStartupScript(this ,this.GetType(), "script",
"javascript:{var txtSymbol = document.getElementById(\"txtSymbol\");
window.location = \"default.aspx?s=\"" + txtSymbol.Value + ";}", true);
}
</script>
settextSymbol 関数から SendRequest を呼び出す必要があります