文字列値をコード ビハインドから JavaScript 関数に渡したいです。値が定義されていないことを説明するキャッチされていない参照エラーが発生した瞬間です。
var variable= txtVariable.Value;
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Registering", "RegisterTheUser("+variable+");", true);
おそらく正しい構文に関するアドバイス
これが機能です
function RegisterTheUser(val) {
alert(val);
}
よろしく