我正在尝试显示字符串以及消息。但是我收到错误。 str1是从表中检索的值
代码是
ScriptManager.RegisterStartupScript(this, this.GetType(), "redirect", "alert('Welcome'); window.location='" +
Request.ApplicationPath + "#';", true);
但我想按如下方式显示
ScriptManager.RegisterStartupScript(this, this.GetType(), "redirect", "alert('Welcome '" + tbEmail.Text + "''); window.location='" +
Request.ApplicationPath + "#';", true);
我只是一个初学者,感谢任何帮助,谢谢