Click here to Skip to main content
16,005,058 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear Frnd.

please find wts the prob.

Warning 28 Validation (XHTML 1.0 Transitional): Text is not allowed between the opening and closing tags for element table'. C:\Users\param\Desktop\2014.02.17\AdmissionTab.aspx 272 6 C:\...\2014.02.17\


With Regards,
Vino
Posted
Comments
Member 10476757 17-Feb-14 2:44am    
please provide your code
Malli_S 17-Feb-14 2:46am    
It is pretty Invalid XML you are using.
Pleas show us some code to get help precisely.
Roozbeh Maheronnaghsh 17-Feb-14 3:00am    
Please show some code to get help.I think you better copy code of page "AdmissionTab.aspx" here.
vignesh war 17-Feb-14 3:06am    

<asp:Panel ID="Panel1" runat="server"
GroupingText="Patient Details" Width="86%" HorizontalAlign="Left">
<div>

<table class="style106">

<tr>
<td align="left" class="style173">
<div>
</div>
</td>

<td class="style174" >
<div>
<asp:Label ID="Label11" runat="server" Text="Reg. Number" Font-Bold="False">
</div>
</td>


<td class="style180" >
<div>
<asp:TextBox ID="txtRegNo" runat="server" Height="20px" Width="152px"
ontextchanged="txtRegNo_TextChanged" ReadOnly="True" AutoComplete="off">
</div>
</td>


<td class="style181" >
<div>
<asp:Label ID="Label3" runat="server" Text="Reg. Date" Font-Bold="False">
</div>
</td>
<td align="left">
<div>
<asp:TextBox ID="txtRegDate" runat="server" Height="20px" Width="100px" AutoComplete="off">
<asp:CalendarExtender ID="txtRegDate_CalendarExtender" runat="server"
TargetControlID="txtRegDate" Format="MM/dd/yyyy" Enabled="True">

</div>
</td>

<td class="style146">
<div>

</div>
</td>
<td>
<div>
</div>
</td>

</tr>
<tr>
<td class="style173">
<div>
</div>
</td>
<td class="style174" >
<div>
<asp:Label ID="Label4" runat="server" Text="Patient Name" Font-Bold="False">
</div>
</td>
<td class="style180">
<div>
<asp:TextBox ID="txtPatientName" runat="server" Height="20px" Width="152px" AutoComplete="off">
</div>
</td>
</tr>

<tr>
<td class="style173">
<div>
</div>
</td>
<td class="style174" >
<div>
<asp:Label ID="Label5" runat="server" Text="Gender" Font-Bold="False">
</div>
</td>

<td class="style180" >
<div>
<asp:RadioButtonList ID="RadioButtonList1" runat="server"
RepeatDirection="Horizontal" >
<asp:ListItem Text="Male" Value="M">
<asp:ListItem Text="Female" Value="F">


</div>


</td>
<td align="left" class="style181">
<div style="text-align:center">
<asp:Label ID="Label12" runat="server" Height="21px" Text="Age" Font-Bold="False">
</div>
</td>

<td class="style147">
<div>
<asp:TextBox ID="txtAge" runat="server" Height="22px" Width="80px" AutoComplete="off">
</div>
</td>

<td class="style146" >
<div>
</div>
</td>
<td class="style146">
<div>

</div>
</td>
</tr>



</tr>

<tr>
<td class="style173">
<div>
</div>
</td>
<td class="style174" >
<div>
<asp:Label ID="Label6" runat="server" Text="Address" Font-Bold="False">
</div>
</td>

<td class="style180">
<div>
<asp:TextBox ID="txtAddress" runat="server" Height="35px" Width="152px"
TextMode="MultiLine" AutoComplete="off">
</div>
</td>
</tr>

<tr>
<td class="style173">
<div>
</div>
</td>
<td class="style174" >
<div>
<asp:Label ID="Label7" runat="server" Text="City" Font-Bold="False">
</div>
</td>

<td class="style180" >
<div>
<asp:TextBox ID="txtCity"
vignesh war 17-Feb-14 3:07am    
that continuation:

<asp:Label ID="Label8" runat="server" Height="21px" Text="PIN" Font-Bold="False">
</div>
</td>
<td align="left" class="style181">
<div>
<asp:TextBox ID="txtPin" runat="server" Height="22px" Width="80px" AutoComplete="off">
</div>
</td>

<td class="style147">
<div>

</div>
</td>

<td class="style146" >
<div>
</div>
</td>
<td class="style146">
<div>

</div>
</td>
</tr>


<tr>
<td class="style173">
<div>
</div>
</td>




<td class="style174">
<div>
<asp:Label ID="Label9" runat="server" Text="Contact No." Font-Bold="False">
</div>

</td>
<td class="style180" >
<div>
<asp:TextBox ID="txtContactNo" runat="server" Height="20px" Width="152px" AutoComplete="off">
</div>
</td>

<td class="style181" >
<div>

</div>
</td>

<td class="style159">
<div>

</div>
</td>
<td >
<div>

</div>
</td>
</tr>

<tr>
<td class="style173" >
<div>
</div>
</td>



<td class="style174">
<div>
<asp:Label ID="Label10" runat="server" Text="E-Mail Id" Font-Bold="False">
</div>
</td>

<td class="style180">
<div>
<asp:TextBox ID="txtEMail" runat="server" Height="20px" Width="152px" AutoComplete="off">
</div>
</td>




<td class="style181" >
<div>
</div>
</td>

<td class="style159" >
<div>

</div>
</td>
<td>
<div>

</div>
</td>
</tr>

<tr>
<td class="style173">
</td>
</tr>
</table>
</div>


1 solution

There is an extera tag.Remove it.

XML
</div>
           </td>
       </tr>



       </tr> <------ Extera Tag(Remove it)
<tr>
    <td class="style173">
        <div>
        </div> 
    </td>
    <td class="style174">
        <div>
            <asp:Label ID="Label6" runat="server" Text="Address" Font-Bold="False">
        </div>
    </td>
 
Share this answer
 

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