On Jul 3, 7:16 pm, "CdnRebel via DotNetMonster.com" <u35447@uwe>
wrote:
> >> Hi,
>
[quoted text clipped - 18 lines]
> Visual Studio and C# and I may have forgotten XML. What should I be
> selecting?
Mary,
the target schema depends on your document. It's used for client-side
markup validation (and intellisense + autocomplete). In your case, the
problem is not really in the schema, but in the ms_2d_layout attribute
which is not supported by selected target schema.
http://msdn2.microsoft.com/en-us/library/f940516c(VS.80).aspx
If you do not want to use validation, you can turn it off. For
details, see
How to: Set Validation Options for HTML Editing in Visual Web
Developer.
http://msdn2.microsoft.com/en-us/library/0byxkfet(VS.80).aspx
Hope it helps
CdnRebel - 04 Jul 2007 19:56 GMT
Alexey,
Bo Chen on ASP.Net forums sent me the following info with regard to this
problem, but they weren't as thorough as you about fixing the validation:
First, you don't have to fix validation errors. They don't stop your program
from running correctly.
Second, ms_2d_layout is not known to be a valid attribute for table indeed.
Likely, it is an additional attribute used somewhere in the client code. If
it is true, just ignore the error.
see original post at: http://www.mcse.ms/message2358272.html
Thanks,
Mary
>On Jul 3, 7:16 pm, "CdnRebel via DotNetMonster.com" <u35447@uwe>
>wrote:
[quoted text clipped - 21 lines]
>
>Hope it helps