问题描述
- ASP.NET 4 遇到引号转义问题
-
我需要在后台添加JavaScript事件;
ddl.Attributes["onchange"] = string.Format("linkTypeChange(this,'{0}')", TextBox.ClientID);
但是其中单引号被转义输出后得到以下字符串: onchange="linkTypeChange(this,'ctrl5_TextBox')"
单引号被输出为',我是想得到以下字符串:
onchange="linkTypeChange(this,'ctrl5_TextBox')"应该怎样解决?
时间: 2024-10-29 02:41:18