代码前置指的是把去掉Cs文件把所有的Cs文件中的代码都写在aspx或者ascx中 常常有时你需要在页面输出脚本如果弹出一个提示框或者打开一个新窗口 你会发现有时用 PageRegisterStartupScript(openwin<script>windowopen(x_blank);</script>); 或者 ResponseWrite(<script language=javascript>windowopen(x_blank);</script>); 会报错 编译错误 说明: 在编译向该请求提供服务所需资源的过程中出现错误请检查下列特定错误详细信息并适当地修改源代码 编译器错误信息: CS: 常数中有换行符 源错误: 行 行 string showconent= 行 PageRegisterStartupScript(openwin<script>windowopen(_blank);</script>); 行 PageRegisterStartupScript(ShowMessageshowconent); 行 那是由于 解析程序遇到 </script> 时 认为时服务器端的代码结束了所以报错! 解决方式是 PageRegisterStartupScript(openwin<script>windowopen(_blank);< + /script>); 把那个东东拆开就行了呵呵 |