|
Java学习者论坛
<%@page contentType="text/HTML;charset=GBK"%>
<body bgcolor="white" >
这里是显示结果:<p>
<%@include file="abc.html"%><p>
<%@include file="mytxt.txt"%><p>
<%@include file="mycode.jsp"%><p>
</body>
abc.html代码:
<font color="red">
Html File
</font>
mytxt.txt代码:
Hello,this is a jsp2 program
mycode.jsp代码:
<%
String s1="co1ding";
out.print(" "+s1);
%>
请高手给出结果后,讲解一下过程和注意地方,谢谢
pure810 于 2008-3-5 下午8:22 修改过
Java学习者论坛欢迎来到Java学习者论坛,转载请注明地址:http://www.javaxxz.com. |
|