Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
BNBHospital
/
Views
/
Shared
/
View File Name :
_Navbar.cshtml
@{ var bb = new bnb.Models.bnbEntities(); var service = bb.Services.ToList(); var Healthpackage = bb.HealthPackages.Where(x => x.IsActive == true).ToList(); } <!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;600;700&display=swap" rel="stylesheet"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="~/Content/css/bootstrap.min.css" rel="stylesheet"> <link href="~/Content/css/style.css" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"> <style> .fixed-top { position: relative; } .l-navigation .l-navigation-nav li.dropdown > ul { display: none; background: #ffffff; border-radius: 4px; position: absolute; left: 0; top: 100%; @*min-width: 550px; *@ } #navlist { @*column-count: 3; *@ min-width: 500px; } #navlistli { display: flex; flex-direction: row; flex-wrap: wrap; width: 100%; } #navlista { @*flex: 26%;*@ width: 250px; } #navlist1 { @*column-count: 3; *@ min-width: 815px; } #navlistli1 { display: flex; flex-direction: row; flex-wrap: wrap; width: 100%; } #navlista1 { @*flex: 26%;*@ width: 271px; } .bling:hover { color: white; } .bling { animation: bling 1.5s infinite; border-radius: .3rem !important; } @@keyframes bling { 0% { background: rgba(245, 130, 32, 0.3); } 50% { background: rgba(245, 130, 32, 1); } 100% { background: rgba(245, 130, 32, 0.3); } } </style> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-3VJQFQLWFX"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-3VJQFQLWFX'); </script> </head> <body> <!-- Start Header/Navigation --> <header class="l-header l-header__inner navbar fixed-top"> <div class="l-header__holder h-100 w-100"> <div class="container"> <nav class="l-navigation navbar navbar navbar-expand-lg navbar-dark" arial-label="Furni navigation bar"> @{ using (var db = new bnb.Models.bnbEntities()) { List<bnb.Models.sp_Get_Menu_Result> data = db.sp_Get_Menu().Where(t => t.IsActive != false).ToList(); List<bnb.Models.MenuViewModel> result = new List<bnb.Models.MenuViewModel>(); foreach (var d in data.Where(x => x.ParentMenu == null)) { List<bnb.Models.MenuViewModel> childMenu = new List<bnb.Models.MenuViewModel>(); foreach (var cm in data.Where(x => x.ParentMenu == d.MenuName)) { childMenu.Add(new bnb.Models.MenuViewModel { MenuName = cm.MenuName, Url = cm.Url, ContentPageId = cm.ContentPageId, DepartmentDisplayOrder = cm.DepartmentDisplayOrder, IsActive = cm.IsActive, ServiceDisplayOrder = cm.ServiceDisplayOrder, IsHighlighted = cm.IsHighlighted, ChildMenu = null }); } result.Add(new bnb.Models.MenuViewModel { MenuName = d.MenuName, Url = d.Url, ContentPageId = d.ContentPageId, IsHighlighted = d.IsHighlighted, ChildMenu = childMenu }); } <a class="navbar-brand" href="@Url.Action("Index", "HomeUI")"> <img src="~/Content/images/BnBLogo.png" alt="B&B" style="width: 90px; height: 90px;"> @*<img src="~/Content/images/logo.svg" alt="B&B">*@ </a> <div class="collapse navbar-collapse" id="navbarNav"> <ul class="l-navigation-nav navbar-nav ms-auto mb-2 mb-md-0"> @foreach (var mm in result) { <li class="nav-item dropdown"> @if (mm.ChildMenu.Count > 0) { if (mm.MenuName == "Departments" || mm.MenuName == "Services") { <a class="nav-link" href="@Url.Action(@mm.Url)">@mm.MenuName <i class="fa-solid fa-angle-down"></i></a> } else { <a class="nav-link" href="#">@mm.MenuName <i class="fa-solid fa-angle-down"></i></a> } } else { if (mm.IsHighlighted != true) { <a class="nav-link" href="@Url.Action(@mm.Url)">@mm.MenuName</a> } else { <a class="nav-link bling" href="@Url.Action(@mm.Url)" style="color: white!important;">@mm.MenuName</a> } //<a class="nav-link" href="@Url.Action(@mm.Url)">@mm.MenuName</a> } @if (mm.MenuName == "Departments" || mm.MenuName == "Services") { if (mm.MenuName == "Departments") { <ul class="list-unstyled" id="navlist1" style="background: #f3f3f3"> <li id="navlistli1"> @foreach (var cm in mm.ChildMenu.Where(x => x.IsActive == true).OrderBy(x => x.DepartmentDisplayOrder)) { <a class="nav-link" id="navlista1" href="@Url.Action("DepartmentDetail", "HomeUI", new { id = cm.Url })">@cm.MenuName</a> } </li> </ul> } else { <ul class="list-unstyled" id="navlist" style="background: #f3f3f3"> <li id="navlistli"> @foreach (var cm in mm.ChildMenu.Where(x => x.IsActive == true).OrderBy(x => x.ServiceDisplayOrder)) { <a class="nav-link" id="navlista" href="@Url.Action("ServiceDetail", "HomeUI", new { id = cm.Url })">@cm.MenuName</a> } </li> </ul> } } else { <ul class="list-unstyled" style="background: #f3f3f3"> <li> @foreach (var cm in mm.ChildMenu) { @*<a class="nav-link" href="@Url.Action(@cm.Url, "HomeUI",new {id = cm.ContentPageId})">@cm.MenuName</a>*@ if (cm.Url == "OurDoctors") { <a class="nav-link" href="@Url.Action("OurDoctor", "HomeUI")">@cm.MenuName</a> } else { <a class="nav-link" href="@Url.Action("ContentPage", "HomeUI", new { id = cm.Url })">@cm.MenuName</a> } } </li> </ul> } </li> } </ul> </div> } } <a href="tel:+977-01-5970999" class="d-none d-sm-block l-nav__contact text-decoration-none rounded-3 p-2 lg-px-4"> @*<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none" /> <path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2" /> <path d="M15 7a2 2 0 0 1 2 2" /> <path d="M15 3a6 6 0 0 1 6 6" /> </svg>*@ <i class="fa-solid fa-headset"></i> <span class="">+977-01-5970999</span> </a> <a href="tel:+977-9801910904" class="d-none d-sm-block l-nav__contact text-decoration-none rounded-3 p-2 lg-px-4"> @*<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none" /> <path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2" /> <path d="M15 7a2 2 0 0 1 2 2" /> <path d="M15 3a6 6 0 0 1 6 6" /> </svg>*@ <i class="fa fa-suitcase-medical"></i> <span class="">9801910904</span> </a> <button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="offcanvasRight"> <i class="fa-solid fa-bars"></i> </button> </nav> </div> </div> <div class="l-widget d-none d-md-block" style="top: 18%"> <ul class="list-unstyled mb-0"> <li class="l-widget__appointment text-center pb-0 p-2"> <a href="@Url.Action("OurDoctor", "HomeUI")" class="d-block text-decoration-none text-white p-2"> <i class="fa-solid fa-suitcase-medical"></i> <span class="d-block">Find a Doctor</span> </a> </li> <li class="l-widget__appointment text-center pb-0 p-2"> <a href="https://appointment.merodoctor.com/hospitals/onlineticket?orgid=106&data=default&addebyname=default&addedby=614" target="_blank" class="d-block text-decoration-none text-white p-2"> <i class="fa-regular fa-calendar-check"></i> <span class="d-block">Online <br>Appointment</span> </a> </li> <li class="l-widget__appointment text-center pb-0 p-2"> <a href="https://labreport.merodoctor.com/106" target="_blank" class="d-block text-decoration-none text-white p-2"> <i class="fa-solid fa-chart-simple"></i> <span class="d-block">Lab <br />Report</span> </a> </li> <li class="l-widget__appointment text-center pb-2 p-2"> <a href="@Url.Action("FAQ", "HomeUI")" class="d-block text-decoration-none text-white p-2"> <i class="fa-solid fa-hand-holding-medical mb-2"></i> <span class="d-block">FAQs</span> </a> </li> <li class="l-widget__appointment text-center pb-2 p-2"> <a href="@Url.Action("BloodDonation", "HomeUI")" class="d-block text-decoration-none text-white p-2"> <i class="fa-solid fa-droplet mb-2 fa-2x"></i> <span class="d-block" style="font-size: 16px;">Donate Blood</span> </a> </li> </ul> </div> <div class="l-mobile-menu offcanvas offcanvas-end" tabindex="-1" id="offcanvasRight" aria-labelledby="offcanvasRightLabel"> <div class="offcanvas-header bg-light"> <h5>Menu</h5> <button type="button" class="btn-close text-reset text-white" data-bs-dismiss="offcanvas" aria-label="Close"> </button> </div> <div class="offcanvas-body"> <ul class="list-unstyled mb-5"> @{ using (var db = new bnb.Models.bnbEntities()) { List<bnb.Models.sp_Get_Menu_Result> data = db.sp_Get_Menu().ToList(); List<bnb.Models.MenuViewModel> result = new List<bnb.Models.MenuViewModel>(); foreach (var d in data.Where(x => x.ParentMenu == null)) { List<bnb.Models.MenuViewModel> childMenu = new List<bnb.Models.MenuViewModel>(); foreach (var cm in data.Where(x => x.ParentMenu == d.MenuName)) { childMenu.Add(new bnb.Models.MenuViewModel { MenuName = cm.MenuName, Url = cm.Url, ContentPageId = cm.ContentPageId, DepartmentDisplayOrder = cm.DepartmentDisplayOrder, IsActive = cm.IsActive, ServiceDisplayOrder = cm.ServiceDisplayOrder, ChildMenu = null }); } result.Add(new bnb.Models.MenuViewModel { MenuName = d.MenuName, Url = d.Url, ContentPageId = d.ContentPageId, ChildMenu = childMenu }); } foreach (var mm in result) { <li> @if (mm.MenuName == "About Us") { <a class="nav-link" href="#">@mm.MenuName </a> <ul class="list-unstyled rounded-3"> @foreach (var cm in mm.ChildMenu.Where(x => x.IsActive == true)) { <li> @*<a class="nav-link" href="@Url.Action(@cm.Url, "HomeUI", new { id = cm.ContentPageId })">@cm.MenuName</a></li>*@ @if (cm.Url == "OurDoctors") { <a class="nav-link" href="@Url.Action("OurDoctor", "HomeUI")">@cm.MenuName</a> } else { <a class="nav-link" href="@Url.Action("ContentPage", "HomeUI", new { id = cm.Url })">@cm.MenuName</a> } </li> @* <a class="nav-link" href="@Url.Action(@cm.Url, "HomeUI", new { id = cm.ContentPageId })">@cm.MenuName</a>*@ } </ul> } else { <a class="nav-link" href="@Url.Action(@mm.Url, "HomeUI")">@mm.MenuName</a> @*<a class="nav-link" href="@Url.Action(@cm.Url, "HomeUI", new { id = cm.ContentPageId })">@cm.MenuName</a>*@ } </li> } <li class="text-center "> <a href="@Url.Action("OurDoctor", "HomeUI")" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <i class="fa-solid fa-suitcase-medical"></i> Find a Doctor </a> </li> <li class="text-center"> <a href="https://appointment.merodoctor.com/hospitals/onlineticket?orgid=106&data=default&addebyname=default&addedby=614" target="_blank" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <i class="fa-regular fa-calendar-check mr-1"></i> Online Appointment </a> </li> <li class="text-center"> <a href="https://labreport.merodoctor.com/106" target="_blank" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <i class="fa-solid fa-chart-simple"></i> Lab Report </a> </li> <li class="text-center"> <a href="@Url.Action("FAQ", "HomeUI")" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <i class="fa-solid fa-hand-holding-medical mb-2"></i> FAQs </a> </li> <li class="text-center"> <a href="tel:+977-01-5970999" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"></path> <path d="M15 7a2 2 0 0 1 2 2"></path> <path d="M15 3a6 6 0 0 1 6 6"></path> </svg> +977-01-5970999 </a> </li> <li class="text-center"> <a href="tel:01-5544800" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"></path> <path d="M15 7a2 2 0 0 1 2 2"></path> <path d="M15 3a6 6 0 0 1 6 6"></path> </svg> 01-5544800 </a> </li> } } @*<li class="active"><a href="#">Home</a></li> <li> <a href="#">About Us </a> <ul class="list-unstyled rounded-3"> <li><a class="nav-link" href="@Url.Action("Whoweare", "HomeUI")">Who We Are</a></li> <li><a class="nav-link" href="#">IRC</a></li> <li><a class="nav-link" href="#">Our Doctor</a></li> <li><a class="nav-link" href="#">B & B Medical Institute</a></li> <li><a class="nav-link" href="#">Medical Journal</a></li> <li><a class="nav-link" href="#">Tariff</a></li> </ul> </li> <li><a href="#">Departments</a></li> <li><a href="#">Services</a></li> <li><a href="#">Health Packages</a></li> <li><a href="#">Contact us</a></li> <li class="text-center"> <a href="tel:+977-01-5970999" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"></path> <path d="M15 7a2 2 0 0 1 2 2"></path> <path d="M15 3a6 6 0 0 1 6 6"></path> </svg> +977-01-5970999 </a> </li> <li class="text-center"> <a href="tel:01-5544800" class="l-nav__contact text-decoration-none rounded-3 p-2 w-100 px-4"> <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2"></path> <path d="M15 7a2 2 0 0 1 2 2"></path> <path d="M15 3a6 6 0 0 1 6 6"></path> </svg> 01-5544800 </a> </li>*@ </ul> </div> </div> </header> @RenderBody() <footer class="l-footer p-4 pt-5 pb-5"> <div class="container"> <div class="row pb-5"> <!--Grid column--> <div class="col-5 col-md-6 col-lg-2 mb-4 mb-md-0"> <h3 class="h5 text-uppercase mb-4">Quick Link</h3> <ul class="list-unstyled mb-0"> <li class="mb-2"> <a href="@Url.Action("Index", "HomeUI")" class="text-white text-decoration-none">Home</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none" data-bs-toggle="dropdown">About Us</a> </li> <li class="mb-2"> <a href="@Url.Action("OurDoctor", "HomeUI")" class="text-white text-decoration-none">Doctors</a> </li> <li class="mb-2"> <a href="@Url.Action("Service", "HomeUI")" class="text-white text-decoration-none">Services</a> </li> <li class="mb-2"> <a href="@Url.Action("HealthPackage", "HomeUI")" class="text-white text-decoration-none">Health Packages</a> </li> <li class="mb-2"> <a href="@Url.Action("Testimonials", "HomeUI")" class="text-white text-decoration-none">Testimonials</a> </li> <li class="mb-2"> <a href="@Url.Action("Contact", "HomeUI")" class="text-white text-decoration-none">Contact Us</a> </li> <li class="mb-2"> <a href="@Url.Action("Vacancy", "HomeUI")" class="text-white text-decoration-none">Careers</a> </li> </ul> </div> <!--Grid column--> <!--Grid column--> <div class="col-7 col-md-6 col-lg-3 mb-4 mb-md-0"> <h3 class="h5 text-uppercase mb-4">Services</h3> <ul class="list-unstyled"> @foreach (var item in service) { <li class="mb-2"> <a href="@Url.Action("ServiceDetail", "HomeUI", new { id = item.Url })" class="text-white text-decoration-none">@item.ServiceName</a> </li> } @*<li class="mb-2"> <a href="#" class="text-white text-decoration-none">Outpatient Department</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">Physiotherapy</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">Emergency and Trauma Care</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">In Patient Services</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">OT and Surgical Services</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">Pharmacy</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">Optical Diagnostics Services</a> </li> <li> <a href="#" class="text-white text-decoration-none">Radiology and Imaging Services</a> </li>*@ </ul> </div> <!--Grid column--> <!--Grid column--> <div class="col-5 col-md-3 col-lg-3 mb-4"> <h3 class="h5 text-uppercase mb-4">Health Packages</h3> <ul class="list-unstyled mb-4"> @foreach (var item in Healthpackage) { <li class="mb-2"> <a href="@Url.Action("Healthpackage", "HomeUI")" class="text-white text-decoration-none">@item.HealthPackageName</a> </li> } @*<li class="mb-2"> <a href="#" class="text-white text-decoration-none">Basic Health Package</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">Basic Women’s Health Package</a> </li> <li class="mb-2"> <a href="#" class="text-white text-decoration-none">Women’s Health Package</a> </li> <li> <a href="#" class="text-white text-decoration-none">Gold Health Package</a> </li>*@ </ul> </div> <!--Grid column--> <!--Grid column--> <div class="col-7 col-md-6 col-lg-3 mb-4 mb-md-0"> <h3 class="h5 text-uppercase mb-4">Contact</h3> <address class=""> Gwarko, Lalitpur, Nepal<br> P.O Box: 2481 </address> <dl> <dt class="">Phone : </dt> <dd> <a href="tel:+977-01-5970999" class=" text-decoration-none" style="color: #F58220;"> +977-01-5970999, <a href="tel:01-5544800" class=" text-decoration-none" style="color: #F58220;"> 01-5544800, <br><a href="tel:01-5544941" class=" text-decoration-none" style="color: #F58220;">01-5544941</a>, <a href="tel:01-5531933" class=" text-decoration-none" style="color: #F58220;">01-5531933</a> </dd> </dl> <div class=""> Fax: +977-1-5528526 <br> Email: <a href="mailto:admin@bbhospital.com.np" class="text-decoration-none" style="color: #F58220;">admin@bbhospital.com.np</a> </div> </div> <!--Grid column--> </div> <!--Grid row--> </div> <!-- Grid container --> <div class="l-footnote text-center"> <div class="container"> <div class="l-footnote__holder pt-4"> <p style="color: #F58220 !important;"> We are pioneers of private healthcare arena and continue to lead in many areas of medicine <br> and medical services. Our services cater to a wide spectrum of the population and the needy benefit from our services <br>extensively. </p> <div class="l-footer__social mb-4 text-uppercase"> Connect with us: <a href="https://www.facebook.com/bbhospitalnepal/" class="text-decoration-none me-2"> <i class="fa-brands fa-facebook-f"></i> </a> <a href="https://www.instagram.com/bbhospital/" class="text-decoration-none"> <i class="fa-brands fa-instagram"></i> </a> </div> <p style="color: #F58220 !important;"><a href="http://teamnext.com.np/" style="color: #F58220 !important; text-decoration: none" target="_blank">Powered By Team Next ICT Solutions</a></p> <p style="color: #F58220 !important;">© Copyright 2022 B&B Hospital Pvt. Ltd.</p> </div> <!-- Messenger Chat Plugin Code --> <div id="fb-root"></div> <!-- Your Chat Plugin code --> <div id="fb-customer-chat" class="fb-customerchat"> </div> </div> </div> </footer> <script> var chatbox = document.getElementById('fb-customer-chat'); chatbox.setAttribute("page_id", "444562025627261"); chatbox.setAttribute("attribution", "biz_inbox"); </script> <!-- Your SDK code --> <script> window.fbAsyncInit = function () { FB.init({ xfbml: true, version: 'v15.0' }); }; (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js'; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <script src="~/Scripts/js/jquery.min.js"></script> <script src="~/Scripts/js/bootstrap.bundle.min.js"></script> <script src="~/Scripts/js/slick.min.js"></script> <script src="~/Scripts/js/app.js"></script> </body> </html>