Click here to Skip to main content
15,906,329 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
If someone can help me out in identifying why i am getting the below error
XML
XML PARSE ERROR:  Missing end-tag
  Error occurs at or below this element stack:
    <html>
     <body>
      <form>
       <div>
        <table>
         <tr>
          <td>
           <table>
            <tr>
             <td>
              <table>
               <tr>
                <td>
                 <table>
                  <tr>
                   <td>
                    <span>




Thanks you for your suggetions if any....
Posted
Comments
KothaSanjay 11-May-12 5:27am    
Hello losmac thank 4 your reply.
but what i posted was the message generated from the exception log file.
Let me be more specific.
I have a gridveiew in my screen and just above it i placed export excel option.For this purpose ive used the open souce tool carlosag excel generator.To know more about it Refer (http://www.carlosag.net/tools/excelxmlwriter/)
and finally ive checked my design code if i have missed any closing tags.
found everything was fine...Just guide me if the error msg is misleading one.

1 solution

Almost each tag in html must contain ending tag, for example:
<html>
<body>
<h1>My first HTML document</h1>
<p>Hello!</p>
</body></html>

As you see, for <html> tag equivalent tag is </html>

More at: http://en.wikipedia.org/wiki/HTML_element[^]
http://www.w3schools.com/html/default.asp[^]

The error you are getting is because of ending tags wasn't found.
 
Share this answer
 
v4
Comments
Wendelius 11-May-12 17:55pm    
Yep :)
Maciej Los 12-May-12 3:52am    
;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900