Getting a 404 error with ej.widgets.core.min.css

Hi,

First time testing with SyncFusion this morning (in the UK that is).  I am working in a team that is not only using WebForms, but with WebSites (I know, I know).

I have followed the instructions at https://help.syncfusion.com/aspnet/getting-started/manual-integration-of-syncfusion-aspnet-controls ...I have to do this manually because of the extensive existing infrastructure that I will need to be integrating these tools with.

I have added a Slider (it could be any control) and done some basic configuration (min value, max value, increment value) and run the system as is, just to see what a vanilla control looks like.

Before we get to the slider I'm getting a failure with the CSS references.  The link ref to the required CSS is working well enough to not find ej.widgets.core.min.css.  I'm getting a 404 Resource not found error.

But the various files are where they should be...please see attached.

??

Paul


Attachment: 20220927_CSSMissing1_263f13eb.7z

6 Replies

SS Sivakumar ShunmugaSundaram Syncfusion Team September 28, 2022 01:07 PM UTC

Hi Paul,


Greetings from Syncfusion support.


According to the shared details, we understand that you are facing an issue with implementing the ASP.NET Web Forms Slider control. As per the request, we have prepared a simple sample of the ASP.NET Web Forms Slider control, and the sample works fine. Meanwhile, we are quite unclear about the exact issue you are facing with the ej.widgets.core.min.css file on your side. We have attached the prepared sample for your reference.


Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/WebApplication2-930950347.zip


Please check the attached sample. If we misunderstood your exact issue, share some additional details related to your exact issue with Slider control with code snippets or replicate the issue in the above sample. It will help us to provide a prompt solution.


Regards,

Sivakumar S



PA Paul September 28, 2022 01:28 PM UTC

Thanks.  Will have to wait until tomorrow to take a look at this, as I am in the office and need to be at home.


Will get back to you asap.


Paul



IL Indhumathy Loganathan Syncfusion Team September 29, 2022 06:01 AM UTC

Hi Paul,


Thanks for the update. We will wait to hear from you.


Regards,

Indhumathy L



PA Paul September 29, 2022 01:20 PM UTC

OK, so have made headway.  Thanks for the example web application, that's been a useful comparison. 

I've been only able to get anything working by using the project templates provided by SyncFusion.  If that's how it's got to be, then so be it...to be frank the fact we are still using websites is, for me, a major risk, so this may be a good prompt to move to applications.

I think you need to review the contents of https://help.syncfusion.com/aspnet/getting-started/manual-integration-of-syncfusion-aspnet-controls .  It hasn't worked for me and I suspect the instructions are out of date.  I suspect few try it anyway and it could be argued that it misses the point somewhat.

If you want me to provide copies of the systems that resulted from the instructions, to investigate further, please let me know.  I'm happy that I can continue from here.

Kind regards, paul



SS Sivakumar ShunmugaSundaram Syncfusion Team September 30, 2022 04:01 PM UTC

Hi Paul,


As per the shared details, we understand that you are facing issues while implementing the ASP.NET Web Forms Slider component using the shared documentation. Please refer to the below steps to implement the Syncfusion Slider component in the ASP.Net Web forms application.


Step 1: To implement the Syncfusion Slider component in the ASP.Net Web forms application, we suggest you install the “Syncfusion.ASPNET” package on your side. Refer to the below link.


Link: https://help.syncfusion.com/aspnet/visual-studio-integration/nuget-packages#using-nuget-package-manager


Step 2: After including the assemblies, you need to include the required style and script file on the Site.Master as shown in the below code snippet and remove the jQuery script from the ScriptManager tag. Since we have included our jQuery Script inside the header tag. Also, we have attached the documentation steps to include Script and style in your application.


[Site.Master]

 

<head runat="server">

    <meta charset="utf-8" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <title><%: Page.Title %> - My ASP.NET Application</title>

     <link rel='nofollow' href="Content/ej/web/default-theme/ej.web.all.min.css" rel="stylesheet" />

    <asp:PlaceHolder runat="server">

        <%: Scripts.Render("~/bundles/modernizr") %>

        <script src="Scripts/jquery-3.4.1.min.js"></script>

        <script src="Scripts/ej/web/ej.web.all.min.js"></script>

        <script src="Scripts/ej/common/ej.webform.min.js"></script>

    </asp:PlaceHolder>

 

    <webopt:bundlereference runat="server" path="~/Content/css" />

    <link rel='nofollow' href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />

 

</head>

<body>

    <form runat="server">

        <asp:ScriptManager runat="server">

            <Scripts>

                <%--To learn more about bundling scripts in ScriptManager see https://go.microsoft.com/fwlink/?LinkID=301884 --%>

                <%--Framework Scripts--%>

                <asp:ScriptReference Name="MsAjaxBundle" />

                <%--<asp:ScriptReference Name="jquery" />--%>

                <%--Site Scripts--%>

...

            </Scripts>

        </asp:ScriptManager>


Link: https://help.syncfusion.com/aspnet/getting-started/manual-integration-of-syncfusion-aspnet-controls#adding-the-required-javascript-files


Step 3: After including the script and style sheet you need to include the below-mentioned assembly in your Web.conf in your application as shown in the below documentation step and include the required component implementation in the Default.aspx page.


Link: https://help.syncfusion.com/aspnet/getting-started/manual-integration-of-syncfusion-aspnet-controls#registering-syncfusion-assemblies-within-the-webconfig


Please follow the shared details and get back to us if you need any further assistance.


Regards,

Sivakumar S



PA Paul October 4, 2022 03:36 PM UTC

I've finished doing my assessment for the time being and am not able to commit any more time at this moment in time.

Thanks you very much for your time..Paul


Loader.
Up arrow icon