Urgent Plz
Good Evening
I am facing very serious problem
i am trying to display image using<bean:write> inside <img/> it worked for the first time but after integration process it stopped working
i throw object on session and i am sure that it retrieve the path of the image well
so plz check this code with me
<%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix='c'%>
<html:html>
<head>
<title>User Profile</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="wrap">
<div id="header">
<div id="logo">
<h1>No Limit Forums</h1>
<div>Like No Any Other </div>
</div>
<ul id="nav">
<li class="first"><a href="#">Home</a></li>
<li><a href="login.jsp">Login</a></li>
<li><a href="RegisterationForm.jsp">Register</a></li>
<li><a href="#">Forums</a></li>
</ul>
</div>
<!-- /header -->
<div id="content">
<div class="side fl">
<div class="sideinner">
<img src="images/jets.gif" alt="" width="70%" />
<h3><a href="#">PhotoAlbum</a></h3>
</div>
</div>
<div class="main fr">
<div id="text">
<h2>Welcome to User Profile</h2>
<p><img border="0" src="<bean:write name="userBean" property="avatar"/>" alt="Pulpit rock" />
<TABLE CELLPADDING=4 align="center">
<bean:write name="userBean" property="avatar"/>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">Username:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><bean:write name="userBean" property="username"/></font></TD></TR>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">Password:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><bean:write name="userBean" property="password"/></font></TD></TR>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">First Name:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><bean:write name="userBean" property="FName"/></font></TD></TR>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">Last Name:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><bean:write name="userBean" property="LName"/></font></TD></TR>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">Gender:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><bean:write name="userBean" property="gender"/></font></TD></TR>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">Country:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><bean:write name="userBean" property="country"/></font></TD></TR>
<TR><TD><font face="Placard MT Condensed" size="5" color="yellow">Email:</font></TD><TD></TD><TD><font face="Placard MT Condensed" size="4"><font face="Placard MT Condensed" size="5"></font><bean:write name="userBean" property="EMail"/></font></TD></TR>
<TR><TD><br/></TD></TR>
<TR><TD><button value="Edit Profile" onClick="location.href='Profile.jsp'">Edit Profile</button></TD></TR>
</TABLE>
</div>
<div class="clearfix"></div>
<div id="col">
<div class="first fl">
<ul>
<li><a href="http://jets.iti.gov.eg/JETS/CourseOperationController?operation=showCourseUser ">Courses</a></li>
<li><a href="http://jets.iti.gov.eg/JETS/ViewTechnicalTrackServlet">Tracks</a></li>
<li><a href="http://jets.iti.gov.eg/JETS/ViewCertificationServlet">Certificates </a></li>
<li><a href="http://jets.iti.gov.eg/JETS/CorporateTraining.jsp">Coroporate Courses</a></li>
<li><a href="http://jets.iti.gov.eg/JETS/IndividualTraining.jsp">Individual training</a></li>
<li><a href="http://jets.iti.gov.eg/JETS/CourseOperationController?operation=UserSearch">Co urse Search</a></li>
</ul>
</div>
<div class=" fl ">
<ul>
<li><a href="http://jets.iti.gov.eg/JETS/AllNews.jsp">News & Events </a></li>
<li><a href="http://jets.iti.gov.eg/JETS/AllSeminars.jsp">Seminars and Workshops </a></li>
<li><a href="http://jets.iti.gov.eg/JETS/Training.jsp">Trainning </a></li>
<li><a href="http://jets.iti.gov.eg/JETS/contactUs.jsp">Contact us </a></li>
<li><a href="http://jets.iti.gov.eg/JETS/JoinMalingListServlet?submit=joinMailngList">Join Mailing List </a></li>
</ul>
</div>
</div>
</div>
<!-- /content -->
</div>
<div class="clearfix"></div>
<div id="footer">
<div id="ftinner">
<div class="ftlink fl"> <a href="#">Home</a> | <a href="#">About Us</a> | <a href="#">Production</a> | <a href="#">Submission</a> | <a href="#">Contact</a>
<p id="copyright">© 2011. All Rights Reserved To <br/><a href="http://jets.iti.gov.eg/JETS/HomePage.jsp" target="_blank"> JETS</a> by No Limit Team</p>
</div>
</div>
</div>
</div>
</body>
</html:html>
|