Metronic with ASP.NET Core
Is there anyways to work ASP.NET with Metronic? For example: <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server"> <link href="assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css"/> <script src="assets/plugins/global/plugins.bundle.js"></script> <form> <div class="container bg-primary"> <label class="form-label">Basic example</label> <input class="form-control form-control-solid" placeholder="Pick date rage" id="kt_daterangepicker_1"/> </div> </form> <script> $("#kt_daterangepicker_1").daterangepicker({ singleDatePicker: true }); </script> </asp:Content> This code can be interpreted smoothly. However, <input class="form-control form-control-solid" placeholder="Pick date… Read More Metronic with ASP.NET Core