Hi,
I created a website in IIS with the source code copy of an already running website (ASP .NET ). That website uses Infragistics controls. When I run the application I get an error says "GET 10.128.128.61:81/.../ig_edit.js net:: ERR_ABORTED 404 (Not Found)". I get this error for all the controls of Infragistics. I want to know why the files are not loading. Do I need to add any config details in the web.config? Thanks in advance
Hello,
Could I ask you which version of our ASP.NET control you are using in this application? Also, if you run the app locally, does any error occur? This type of errors are usually caused by IIS configuration or missing dll's (references) in the project. Providing more details would be highly appreciated.
The issue has been resolved when I add <configSection> and <infragistics.web> tags in the web.config file. I didn't know that I have to add these lines, because the websites that are running currently do not have these lines but still they run without any issues.
<configSections> <section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/></configSections>
<infragistics.web imageDirectory="~/images" javaScriptDirectory="~/scripts"/>
And thanks for your response.
Hello Vimal, Thank you for sharing this with our community! I am glad to hear that the issue is resolved