hi i am not able to save a file on MyEclipse editor and getting an error as
Some characters cannot be mapped using “ISO-8859-1” character encoding
Here is the simple web page i tried , not having an idea about encodings… I am using MyEclipse 5.5.1 GA version with WINDOWS 2000 Operating system. can anyone please help me out with this.
<%@ page language="java" import="java.util.*" %>
<html>
<head>
<title> Index Page </title>
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<%@ taglib uri="/WEB−INF/struts−html" prefix="html" %>
<table width="500"border="0" cellspacing="0" cellpadding="0">
<tr>
<td></td>
</tr>
<tr bgcolor="red">
<td height="68" width="48%">
<div align="left">
<img src="bsl.gif" width="220" height="74">
</div>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<html:form action="Lookup" name="lookupForm" >
<table width="45%" border="0">
<tr>
<td>Symbol:</td>
<td><html:text property="symbol" /></td>
</tr>
<tr>
<td colspan="2" align="center"><html:submit /></td>
</tr>
</table>
</html:form>
</body>
</html>
Can anyone point out where i used a alien character??