如何使用引用和\"在aspx页面内

时间:2013-11-27 12:28:37

标签: c# html asp.net

我在aspx中使用自定义控件,我需要在我的aspx控件中使用自定义属性。自定义属性字符串在aspx页面中无法正常工作。我不能在自定义属性字符串中使用引号和\“。

我的代码就像这样

<asp:customControl  customProperty="<div><span data-bind=\"text: &quot;Change : &quot; + viewModel.Change() + &quot; %&quot;\"></span></div>">

如何在aspx页面中使用引号和\“。

任何建议都应该受到赞赏。!

谢谢,
KARTHIK

1 个答案:

答案 0 :(得分:1)

尝试使用单引号:

<asp:customControl  customProperty="<div><span data-bind='text: \&quot;Change : \&quot; + viewModel.Change() + \&quot;%\&quot;'></span></div>"></asp:customControl>

如果外部有双引号,则可以在值中使用单引号。