Hey Patrick,
Thanks for replying.
I add column in my table with uniqueidentifier datatype. and set the IDMapping with same new column. But still same problme is occurs.
This is my Code
==================================================================
<C1WebSchedule:C1WebSchedule ID="C1WebSchedule1" runat="server"
ShowStatusBar="False" ViewType="MonthView">
<CalendarInfo EndDateTime="19:00:00" StartDateTime="08:00:00" />
<DataStorage>
<AppointmentStorage DataMember="DefaultView" DataSourceID="SqlDataSource1">
<Mappings>
<SubjectMapping MappingName="SeminarName" />
<LocationMapping MappingName="State" />
<StartMapping MappingName="SeminarTime" />
<EndMapping MappingName="SeminarDate" />
<IdMapping MappingName="Col1" />
<BodyMapping MappingName="SeminarName" />
<AppointmentProperties MappingName="SeminarName" />
</Mappings>
</AppointmentStorage>
</DataStorage>
</C1WebSchedule:C1WebSchedule>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:SHC %>"
SelectCommand="SELECT * FROM [SM]"></asp:SqlDataSource>
==================================================================
here Column "Col1" is GUID.
Regards,
Sehul