以下は私のJavaScript関数です
function HighlightWord(highlightword) {
alert(highlightword);
}
以下のコードを使用して上記の関数に値を渡すと
Page.ClientScript.RegisterStartupScript(this.GetType(), "onload", "HighlightWord(abc)", true);
アラートには「未定義」と表示されます。これの何が問題なのですか?ありがとう。