illegal character错误解决办法

如过你在asp.net后台生成html代码然后输出到客户端就可能发生错误。

错误的写法:

οnmοuseοver='currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff ' '

this.style.backgroundColor='#6699ff '此处脚本会认为它是非法的字符串不给予通过,就是提示:illegal character

正确写法:

οnmοuseοver='currentcolor=this.style.backgroundColor;this.style.backgroundColor=\"#6699ff\"  '

this.style.backgroundColor;this.style.backgroundColor=\"#6699ff\" 此处加上转义符就可以了。

转载于:https://www.cnblogs.com/aspnet_csharp/archive/2011/07/04/2097431.html

你可能感兴趣的:(illegal character错误解决办法)