In Advanced Insert form i have mentioned the code as below :
<scheduler:AdvancedForm runat="server" ID="AdvancedForm1"
Subject='<%# Bind("Subject") %>'
Start='<%# Bind("Start") %>'
End='<%# Bind("End") %>'
RecurrenceRuleText='<%# Bind("RecurrenceRule") %>'
UserID='<%# Bind("User") %>'
RoomID='<%# Bind("Room") %>'
Description='<%# Bind("Description") %>' />
<asp:Panel runat="server" ID="ButtonsPanel" CssClass="rsAdvancedSubmitArea">
<div class="rsAdvButtonWrapper">
<asp:LinkButton runat="server" ID="InsertButton" CssClass="rsAdvEditSave"
CommandName="Insert">
<span><%= Owner.Localization.Save %></span>
</asp:LinkButton>
<asp:LinkButton runat="server" ID="CancelButton" CssClass="rsAdvEditCancel"
CommandName="Cancel" CausesValidation="false">
<span><%= Owner.Localization.Cancel %></span>
</asp:LinkButton>
</div>
</asp:Panel>
And its saving the appointment but i want to validate the records from database before inserting
its becoause i don;t want to add same record on same day so to validate this i want proper message to be display if
record exsists for that day .
Do you know what it could be ?
Thx..
Amit