jspのいくつかの常識

2163 ワード

      <div class="right usercont">
        	<span id="showUserSpan"><font color="#FFFFFF" >  NO:<%=session.getAttribute("username") %>&nbsp;
        	<%if(uname!=null){%><%=session.getAttribute("username") %>,&nbsp;&nbsp;&nbsp;<%}else{%> &nbsp;&nbsp;&nbsp;<%} %></font>
        	</span>
        	<p class="name fontyh">MR.ROWE</p> 

今日htmlページでsessionを取得できないことが分かりました.jspページでしかできません.
また、Htmlページでカッコを取得できない場合もあります.
<%=session.getAttribute("username") %>

jspページのいくつかの常識操作では、sessionをグローバル変数としてあげます.
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="common/website.css" />
<script type="text/javascript" src="script/jquery.js"></script>
</head>
<%
		String uname=(String)session.getAttribute("username");
%>
<script type="text/javascript">// 
// 

次の操作を行います.
      <div class="right usercont">
        	<span id="showUserSpan"><font color="#FFFFFF" >  NO:<%=session.getAttribute("username") %>&nbsp;
        	<%if(uname!=null){%><%=session.getAttribute("username") %>,&nbsp;&nbsp;&nbsp;<%}else{%> &nbsp;&nbsp;&nbsp;<%} %></font>
        	</span>
        	<p class="name fontyh">MR.ROWE</p>