Room scheduler run-time problem

I am building the room scheduler from the example code. I have gotten to the point where the room and user are included in the aspx code. It is throwing the following error when I run it:

The call is ambiguous between the following methods or properties: ‘System.IO.TextWriter.Write(string, params object[])’ and ‘System.IO.TextWriter.Write(char[])’

It is failing on the room_id line. Here is the code:

<% foreach (var myevent in Model) { %> "> ]]> ]]> ]]> ]]> ]]> <% } %>

I would appreciate any help on this.

Thanks, Merv

Hi,
try to explicitely convert room_id and username properties to string

<room_id><![CDATA[<%= myevent.room_id %>]]></room_id> <username><![CDATA[<%= myevent.username %>]]></username>
–><room_id><![CDATA[<%= Convert.ToString(myevent.room_id) %>]]></room_id> <username><![CDATA[<%= Convert.ToString(myevent.username) %>]]></username>