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:
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>
Hello Eric,
Since your VB Web Site has an App_Code folder that contains both VB code files as well as C# code files, the web.config must also be updated in order for this multi-language code file support to work. More information about how to do this is explained in the following documentation in step 11: http://help.infragistics.com/Help/Doc/ASPNET/2012.2/CLR4.0/html/WEB_WebSchedule_Including_WebSchedule_Dialog_Forms_in_your_VB_NET_Web_Site.html
Please let me know if you have any further questions.
Sincerely,
Tsanna
Thank you so much! This solved my problem.
I only had 1 problem after following your links: I didn't realize I needed to configure my application to allow for multiple languages in the App_Code folder since I am using VB and the WebSchedule code files are in C#.
Thank you for posting in our community.
Please make sure that you have included the various WebSchedule project files to your application in order for your WebSchedule to show these forms. The step by step guide regarding including WebSchedule Dialog Form is explained in the following link: http://es.infragistics.com/help/aspnet/Web_WebSchedule_Including_WebSchedule_Dialog_Forms_in_your_CS_Web_Site.html
Here is also a documentation reference about how to deploy common assets:
http://help.infragistics.com/Help/Doc/ASPNET/2014.1/CLR4.0/html/Deploying_Common_Assets.html
If you have any further questions, please let me know.