只显示“我们正在创建一个字符串”。我在脚本中给出的任何内容都没有显示。请给我解决方案
这是我的jsp页面
<html>
<head>
<title>How To Create a String</title>
</head> <body>
<h1>We are creating a String</h1>
<%
String create = "We have create a String";
%>
<h2><%out.println(create);%></h2>
</body>
</html>
谢谢纳拉亚南