473,769 Members | 2,091 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Does it really matter?

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.

Nov 19 '05 #1
8 1199
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.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke
Nov 19 '05 #2
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!)
"Roy" <ro**********@g mail.com> wrote in message
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
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.

Nov 19 '05 #3
"Roy" <ro**********@g mail.com> wrote in message
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
My question is, does it really matter at all?


No.
Nov 19 '05 #4
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

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:eR******** ******@TK2MSFTN GP12.phx.gbl...
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!)
"Roy" <ro**********@g mail.com> wrote in message
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
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.


Nov 19 '05 #5
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

--
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!)
"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in message
news:ez******** ******@TK2MSFTN GP15.phx.gbl...
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

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:eR******** ******@TK2MSFTN GP12.phx.gbl...
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!)
"Roy" <ro**********@g mail.com> wrote in message
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
> 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.
>



Nov 19 '05 #6
ok, agree with that.

Eliyahu

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:uO******** ******@tk2msftn gp13.phx.gbl...
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

--
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!)
"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in message
news:ez******** ******@TK2MSFTN GP15.phx.gbl...
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

"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:eR******** ******@TK2MSFTN GP12.phx.gbl...
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!)
"Roy" <ro**********@g mail.com> wrote in message
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
> 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.
>



Nov 19 '05 #7
You could of course always remove or change the active schema!

"Roy" wrote:
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.

Nov 19 '05 #8
remove or change the active schema!

"sorCrer" <so*****@discus sions.microsoft .com> wrote in message
news:EC******** *************** ***********@mic rosoft.com...
You could of course always remove or change the active schema!

"Roy" wrote:
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.


_______________ _______________ _______________ _______________ _______________ ____
Posted Via Uncensored-News.Com - Accounts Starting At $6.95 - http://www.uncensored-news.com
<><><><><><>< > The Worlds Uncensored News Source <><><><><><><>< >

Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
14023
by: John Dalberg | last post by:
What happens when a cookie expires? Does it mean that when the browser or sessions ends, it doesn't get saved? I am using Opera and looking at available cookies and I can some cookies that have expiration dates in the past. Does this mean that they are in memory and they are still valid cookies which sites can test for their existance and return true. I thought if a cookie's expiration is set in the past, it gets removed from memory and...
13
5058
by: Jason Huang | last post by:
Hi, Would someone explain the following coding more detail for me? What's the ( ) for? CurrentText = (TextBox)e.Item.Cells.Controls; Thanks. Jason
2
2680
by: Viken Karaguesian | last post by:
Hello all, This question is half css and half html based, so I chose this group. I have a theortical question. When positioning floating <div>'s, how much does it matter what order you put itin in the html? Consider this situation. In the website I run, I use two column liquid layout modeled after the one here: http://www.alistapart.com/articles/negativemargins/
33
2339
by: dragoncoder | last post by:
Hi all, Does the following code invoke undefined behaviour ? $ cat a1.cc #include <iostream> #include <limits> int main() { int a = INT_MAX/2;
51
3959
by: Tony Sinclair | last post by:
I'm just learning C#. I'm writing a program (using Visual C# 2005 on WinXP) to combine several files into one (HKSplit is a popular freeware program that does this, but it requires all input and output to be within one directory, and I want to be able to combine files from different directories into another directory of my choice). My program seems to work fine, but I'm wondering about this loop: for (int i = 0; i < numFiles; i++)
14
3494
by: webEater | last post by:
I have a problem, it's not browser specific, and I don't get a solution. I have an (X)HTML document, I show you a part of it: .... <!--<div class="pad">--> <div id="eventImages"><img src="" id="eventImage0" class="eventImage"><img src="" id="eventImage1" class="eventImage"></div>
48
3335
by: Nathan Sokalski | last post by:
Ever since I found out that they didn't give us a way to install both IE6 and IE7 on the same machine, I have been more frustrated and annoyed with Microsoft than I ever have been with any company (and for someone who has loved Microsoft as much as me, that takes something pretty bad!). I am a web developer, and only have access to one computer, which makes it hard to test for both IE6 and IE7. But even for people that have access to...
113
5308
by: John Nagle | last post by:
The major complaint I have about Python is that the packages which connect it to other software components all seem to have serious problems. As long as you don't need to talk to anything outside the Python world, you're fine. But once you do, things go downhill. MySQLdb has version and platform compatibility problems. So does M2Crypto. The built-in SSL support is weak. Even basic sockets don't quite work right; the socket module...
162
10296
by: Sh4wn | last post by:
Hi, first, python is one of my fav languages, and i'll definitely keep developing with it. But, there's 1 one thing what I -really- miss: data hiding. I know member vars are private when you prefix them with 2 underscores, but I hate prefixing my vars, I'd rather add a keyword before it. Python advertises himself as a full OOP language, but why does it miss one of the basic principles of OOP? Will it ever be added to python?
0
9422
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10038
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9987
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 most users, this new feature is actually very convenient. If you want to control the update process,...
1
7404
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6662
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5294
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5444
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3952
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3558
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.