<%–
作者:何志强[hhzqq@21cn.com]
日期:2000-09-19
版本:1.0
功能:jsp例程 – 在jsp中定义函数
–%>
<%!
string hello(){
return "您好,朋友,欢迎进入jsp世界,^_^";
}
%>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>jsp例程 – 在jsp中定义函数</title>
</head>
<body>
<%=hello()%>
</body>
</html>
