在页面中嵌如这样的代码 Response.Write("<script>alert('hello');</script>");
<script runat="server">protected override void OnLoad(EventArgs e) {
Response.Write("<script>alert('hello');</script>");
}
</script>
这样的代码在没有codebehind的aspx页面里无法编译,因为Response.Write里有</script>标签,
请问怎么才能用 --------------------编程问答-------------------- 我是新手,不太明白你为啥这么写,一般我Response.Write都放在后台cs中用,前面js不是一般都写window.open或者showModalDialog()之类的吗 --------------------编程问答-------------------- 你都CODEFILE了,干嘛还要编译,直接用就可以了! --------------------编程问答-------------------- Response.Write("<script>alert('hello');<");
Response.Write("/script>");
这样可以吧?
补充:.NET技术 , ASP.NET