js,jsp部分代码
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ include file="config/config_SelfHelp.jsp"%>
<%@ include file="sh_Bookmark_Data.jsp"%>
<html xmlns:v>
<head>
<title>我的书签</title>
<style type="text/css">
table#border{
border-collapse: collapse;
border-top:#0076BE 1px solid;
border-left:#0076BE 1px solid;
}
table#border td{
border-bottom:#0076BE 1px solid;
border-right:#0076BE 1px solid;
}
a.button:link {
text-decoration: none;
color:black;
}
a.button:visited {
text-decoration: none;
color:black;
display:inline-block;
}
a.button:hover {
text-decoration: none;
display:inline-block;
color:black;
}
a.button:active {
text-decoration: none;
display:inline-block;
clear:both;
color:black;
}
v\:*{behavior:url(#default#VML)}
</style>
<script language="JavaScript" type="text/JavaScript">
function init()
{
test();
correctPNG();
document.body.background=bg_selfHelpRevelation;
}
function correctPNG()
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i];
var imgName = img.src.toUpperCase();
if
相关文档:
JSP(Java Server Pages)是一种动态web资源的开发技术,servlet技术能完成的所有功能,使用JSP技术同样也可以完成。但在长期的软件实践中,根据servlet技术和JSP技术各自的特点,人们逐渐把servlet作为web应用中的控制器组件来使用,而把JSP技术作为数据显示模板来使用。
一、JSP ......
jsp页面调用 <link type="text/css" rel="stylesheet" href="css/style.css"/>样式表
其他样式都可以再页面正常显示
.button-qingchu{background:url(images/qingchu.jpg); width:70px; height:30px; border:0px;} 像这样的背景图片样式就显示不出图片是什么问题! Myeclipse 6.5
在html中都可以显示 在jsp中显示 ......
现在主流的网站开发语言无外乎asp、php、asp.net、jsp等。
网页从开始简单的hmtl到复杂的服务语言,走过了10多个年头,各种技术层出不穷,单个的主流技术也在不断翻新的版本,现在分析下各种语言的区别、优势、劣势、开发注意事项!
......
<%
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires", 0);
%>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http- ......