Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
310
Problem Deploying WebMonthView
posted

I have a WebMonthView in my ASP.NET web application. I am having trouble adding appointments. When I double click on a day to add an appointment, the appointment window pops up saying:

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.            

Requested URL: /ig_common/20132clr4/Forms/WebSchedule/AppointmentAdd.aspx

_______________________________________________________________________________________________________________________

So I created the "/ig_common/20132clr4/" directory on the server and copied the necessary Forms and Styles folders. Now when I double click on a day, the appointment window pops up with this message:

500 - Internal server error.

There is a problem with the resource you are looking for, and it cannot be displayed.

_______________________________________________________________________________________________________________________

Here is how my WebMonthView is defined:

<igsch:WebScheduleInfo ID="WebScheduleInfo1" runat="server" EnableSmartCallbacks="true" EnableProgressIndicator="false" EnableRecurringActivities="false" />

<asp:SqlDataSource runat="server" ID="SDSCalendar" ConnectionString="<%$ConnectionStrings:ConnectionString %>" />

<ig_scheduledata:WebScheduleSqlClientProvider ID="WebScheduleSqlClientProvider1" WebScheduleInfoID="WebScheduleInfo1" DataSourceID="SDSCalendar" runat="server"></ig_scheduledata:WebScheduleSqlClientProvider>

<igsch:WebMonthView runat="server" ID="WebMonthView1" Width="100%" Height="700px" WebScheduleInfoID="WebScheduleInfo1">

</igsch:WebMonthView>