aspx error messages

I am building the MyCalendar tutorial. I have it working up to the point where it is to begin updating data. It does not update the database and there are several error messages pointing to the Data.aspx object. The messages are as follows - I did not list all errors because there are essentially repeats.

Warning 1 Validation (): Element ‘html’ occurs too few times.
Warning 2 Validation (XHTML 1.0 Transitional): Element ‘data’ is not supported.
Warning 3 Validation (XHTML 1.0 Transitional): Element ‘event’ is not supported.
Warning 4 Validation (XHTML 1.0 Transitional): Element ‘start_date’ is not supported.

The other 2 items that have an error message are end_date and text.

What am I missing?

Thanks,
Merv

Hello,
you need to set right content type for the page
<%@ Page Language=“C#” Inherits=“System.Web.Mvc.ViewPage” ContentType=“text/xml” %>

Yes, I have that line at the top of the block of code. Here it is:

<%@ Page Language=“C#” Inherits=“System.Web.Mvc.ViewPage” ContentType=“text/xml” %>

<% foreach (var myevent in Model) { %>

<start_date>]]></start_date>
<end_date>]]></end_date>
]]>

<% } %>

Thank, Merv

Ignore the post. I figured it out.

What was the problem? I am having the same errors.