Link to home
Start Free TrialLog in
Avatar of huzefaq
huzefaq

asked on

The c:out value not pinting in JSP

Hi Guys

I am trying to print a sample statement in a JSP but somehow it's not printing it. Would you guys know what can be the problem
This is not pinting <c:out value="I am here" />



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<html:html>
<HEAD>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM Software Development Platform">
<TITLE></TITLE>
</HEAD>
 
<BODY>
<P>Place content here.
<c:out value="I am here" />
</P>
 
</BODY>
</html:html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of mrcoffee365
mrcoffee365
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of amateur83
amateur83

<%@ taglib uri="/tags/core" prefix="c"%>