Does it really matter?

  • Thread starter Thread starter Roy
  • Start date Start date
R

Roy

Hey all,
You know it, you love it, it's the:
"As per the active schema <insert tag here> cannot be nested withing
<insert some other tage here>"
Error.

My question is, does it really matter at all?
I routinely ignore the squiggly underlines and go about my business
with no worries. Is there something to be gained by following the
scrict schema VS desires?

Thanks.
 
It doesn't matter if the rendered end result works in (X)HTML. VS is just
unable to validate etc and probably can't give so good Intellisense support
etc, but it's not a showstopper.
 
No.

VS.net complains twice for this, which should be enough to tell anyone to
ignore it:

<asp:Repeater ID="repeater" runat="server">
<HeaderTemplate>
<table>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is
annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
 
but you lose nothing from changing it to

<table>
<asp:Repeater ID="repeater" runat="server">
<HeaderTemplate>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</FooterTemplate>
</asp:Repeater>
</table>

No complains for that.

Eliyahu
 
Except that the <table></table> tags will be generated even if I set the
repeater's visibility to false, say because their are no rows...maybe it's
still valid, but it irks me...

Karl
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top