string locationName = "Mumbai";
Page.ClientScript.RegisterStartupScript(Type.GetType
("System.String"), "addScript", "PassValues(" + locationName + ")", true);
在JavaScript我的代碼包含警報顯示在JavaScript中未定義
<script language="javascript" type="text/javascript">
function PassValues(locationName)
{
var txtValue = locationName;
alert(txtValue);
}
</script>
這裏警報顯示不確定的,而不是「孟買」
歡迎來到SO,請使用{}工具箱按鈕提到你的代碼部分。 –