473,407 Members | 2,315 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

please guide me in my code.

Hi,
i am working on the coding part which is based on jsp/html.As im fresher i am facing some problems with the code.so,can u please guide me..This is the error which i ve got...please have a look....

org.apache.jasper.JasperException: /jsp/DeleteUserDetail.jsp(103,0) The end tag "</html:html" is unbalanced

code follows..
Expand|Select|Wrap|Line Numbers
  1.  
  2. <%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
  3. <%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>
  4. <%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
  5.  
  6. <html:html>
  7.  <head>
  8.   <LINK href="./style.css" type=text/css rel=stylesheet>
  9.  <title> Delete User Details  </title>
  10.   <script language="javascript" src="./ByUserReport.js"> 
  11.  
  12.   function check()
  13.         {
  14.         document.forms[0].action="./DeleteUserSuccess.jsp";
  15.         document.forms[0].submit();
  16.         }
  17.   </script>
  18.  <LINK href="./style.css" type=text/css rel=stylesheet>
  19.  </head>
  20. <% System.out.println("haiiiiiiiiii");%>
  21. <body>
  22.     <form  onsubmit="javascript:check()" target=_self >
  23.  
  24.         <% System.out.println("inside form");%> 
  25.  
  26.         <!--<p align=center >  <font size="2" color= #000099>
  27.         <font size="4" color= #000099>Hit Rate Utility </font></p>-->
  28.  
  29.         <div align="center"><br><br>
  30.         <table>
  31.             <tr>
  32.                 <td align=center><font size="5" color= #000099>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Delete User  </font></td>
  33.             </tr>
  34.         </table>
  35.         <br>
  36.         <table width="10%" border="0" cellpadding="1" cellspacing="5" >
  37.          <tr>
  38.            <td align="left" class="PSLOGINTEXTBOLD">User&nbsp;&nbsp;ID:</td>
  39.            <td width="370">
  40.              <input type="text" id="Text1" name="userid" value="" class="PSEDITBOX" size="26" >&nbsp;&nbsp;
  41.            </td>
  42.         </tr>
  43.         <!--<tr>
  44.         <td align="right" class="PSLOGINTEXTBOLD">&nbsp;&nbsp;Password:&nbsp;&nbsp;</td>
  45.         <td width="370">
  46.         <input TYPE="password" id="pwd" name="pwd" class="PSEDITBOX" size="26"></td>
  47.         </tr>-->
  48.         <tr>
  49.          <td>&nbsp;</td>
  50.          <td height="26" width="370">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
  51.         </tr>
  52.  
  53.         <tr>
  54.          <td align="right" class="PSLOGINTEXTBOLD">&nbsp;&nbsp;Password:&nbsp;&nbsp;</td>
  55.          <td width="370">
  56.          <html:text property="pwd" class="PSEDITBOX">
  57.          <!--  <input TYPE="password" id="pwd" name="pwd" class="PSEDITBOX" size="26"> --> </td>
  58.         </tr>
  59.         <tr>
  60.          <td align="right" class="PSLOGINTEXTBOLD">First Name:&nbsp;&nbsp;</td>
  61.          <td width="370">
  62.          <html:text property="first" class="PSEDITBOX">
  63.          <!-- <input TYPE="text" id="first" name="first" class="PSEDITBOX" size="26">--> </td>
  64.         </tr>
  65.         <tr>
  66.          <td align="right" class="PSLOGINTEXTBOLD">Middle&nbsp;Name:&nbsp;&nbsp;</td>
  67.          <td width="370">
  68.          <html:text property="middle" class="PSEDITBOX">
  69.          <!-- <input TYPE="text" id="middle" name="middle" class="PSEDITBOX" size="26"> --> </td>
  70.         </tr>
  71.         <tr>
  72.              <td align="right" class="PSLOGINTEXTBOLD">Last Name:&nbsp;&nbsp;</td>
  73.                <td width="370">
  74.            <html:text property="last" class="PSEDITBOX">
  75.             <!-- <input TYPE="text" id="last" name="last" class="PSEDITBOX" size="26"> --></td>
  76.         </tr>
  77.         <tr>
  78.            <td align="right" class="PSLOGINTEXTBOLD">Email ID:&nbsp;&nbsp;</td>
  79.            <td width="370">
  80.            <html:text property="email" class="PSEDITBOX">
  81.            <!--  <input TYPE="text" id="email" name="email" class="PSEDITBOX" size="26">--> </td>
  82.         </tr>
  83.         <tr>
  84.           <td align="right" class="PSLOGINTEXTBOLD">User Type:&nbsp;&nbsp;</td>
  85.            <td width="370">
  86.           <html:text property="utype" class="PSEDITBOX">  </td>
  87.            <!--  <select  property="utype" name="usertype" id="usertype" >
  88.             <option value="N" selected > Normal User</option>
  89.              <option value="A">Admin User</option></td>
  90.             </select>-->
  91.         </tr>
  92.  
  93.         <tr><td align="center">
  94.  
  95.         <input  type="submit" name="Submit"  value="Delete" class="PSLOGINPUSHBUTTON" >
  96.  
  97.         </td>
  98.         </tr>
  99.  
  100.         </table>
  101.     </div>
  102.     </form>
  103. </body>
  104. </html:html>
  105.  
  106.  
Aug 1 '07 #1
3 2485
r035198x
13,262 8TB
I don't know anything about all this stuff but If I had a gun pointed at me and were asked to give a suggestion, I'd say what happens if you put the

Expand|Select|Wrap|Line Numbers
  1.  <%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
  2. <%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>
  3. <%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
stuff inside the head section of that page?
Aug 1 '07 #2
I don't know anything about all this stuff but If I had a gun pointed at me and were asked to give a suggestion, I'd say what happens if you put the

Expand|Select|Wrap|Line Numbers
  1.  <%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
  2. <%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>
  3. <%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
stuff inside the head section of that page?

To use Struts tag library discriptors in my program.
Aug 2 '07 #3
praveen2gupta
201 100+
your starting and end html tags are not proper. The server is showing this erroe.
Correct your line no 103 </html:html> replace as </html>
and starting line of <html:html>Replace as<html>
Aug 2 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Sjaakie | last post by:
Hi there, I'm trying to get HTML_ToPDF (3.3) running on en dedicated server, safe_mode enabled. Been trying for more than 2 days now, without success. Have similar script running on my own...
3
by: Kanv | last post by:
Hi, I would shortly be working on DB2 UDB 8.1.2. I have no prior DB2 experience and need to be involved in the installation, maintainence and tuning of the database. Could you please...
7
by: cw | last post by:
I am totally new to MS Access 2000. Can anyone please recommend a good beginners' guide book or web site? TIA.
2
by: Foobarius Frobinium | last post by:
http://thelinuxlink.net/~fingolfin/pointer-guide/ I've made a lot of corrections, and put in more new stuff. I have malloc and pointers to struct's and maybe a few more things and I'm done. ...
1
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej...
32
by: Tom Cole | last post by:
I bet 50% of the posts I've read lately have had at least one bad thing to say about every website or book dedicated to javascript. There are clearly a few posters (you know who you are) who...
12
by: Simon | last post by:
Hi all, I'm having a baffling problem with a windows service that I'm working on. Basically, I am using a typed dataset to insert a large number of rows into an SQL Server 2005 database. But...
0
by: imranabdulaziz | last post by:
Dear All, I am making web application using Asp.net C#(Visual Studio2005). And Sql server 2005 as a back End I generated local mode report but as there was no printing option available . I assign...
3
by: Har | last post by:
I have created a small client application with loopback address (127.0.0.1) so that same machine act as server and client. but i want to know whether we have to create seperate server application and...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.