473,545 Members | 1,779 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

please guide me in my code.

78 New Member
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.jasp er.JasperExcept ion: /jsp/DeleteUserDetai l.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 2492
r035198x
13,262 MVP
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
phanimadhav
78 New Member
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 New Member
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>Repl ace as<html>
Aug 2 '07 #4

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

Similar topics

0
1739
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 personal server. Safe mode disabled. This is what I did so far: --- I copied html2ps, ps2pdf and curl into...
3
2597
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 recommend the best books around which will detail how to setup, maintain and manage DB2 databases. From the basic to the tuning part.
7
1612
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
1537
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. Examine it and tell me what you think.
1
9596
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 and I was wondering if anyone here would be able to give me some tips for young players such as myself, for learning the language. Is this the...
32
2482
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 either are or consider themselves to be the "comp.land.javascript elite". You guys may be the brightest, most seasoned developers out there, and hats...
12
4122
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 there's a memory leak that seems to be to do with calling the data adapters update method. It's making the memory usage go through the roof and...
0
1770
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 printing feature to button click by exporting the data to EMF format and print Now when I run it through IDE VS2005 then it does not show any...
3
6613
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 run that seperately inorder to connect with the same machine. Even if i run client and server application seperately client...
0
7393
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7653
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7803
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7411
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7749
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5965
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
3444
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1012
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
695
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.