Link to home
Start Free TrialLog in
Avatar of westdh
westdhFlag for United States of America

asked on

MVC 4.0: these javascript files and css files are not working in this _Layout.cshtml files

How do i install these Javascript files and css file in MVC a cshtml file?
all the other .js and css files that are working i.e.
<link rel="stylesheet" href="@Url.Content("~/Content/Site.css")" />

these javascript files and css files are not working in this _Layout.cshtml files
 +++++
<link rel="stylesheet" type="text/css" href="qunit/qunit.css" media="screen">

<script type="text/javascript" src="js/libs/modernizr-2.0.min.js"></script>
 <script type="text/javascript" src="js/script.js"></script>
 <script type="text/javascript" src="qunit/qunit.js"></script>
 <script type="text/javascript" src="tests.js"></script>

+++++
<html> 
	<head> 
        <meta charset="utf-8" />
	    <title>@ViewBag.Title</title> 
        <meta name="viewport" content="width=device-width, initial-scale=1" />

        <link rel="stylesheet" href="@Url.Content("~/Content/jquery.mobile-1.0b2.css")" />
	    <!-- <link rel="stylesheet" href="@Url.Content("~/Content/jquery.mobile-1.0b2.min.css")" /> -->
        <link rel="stylesheet" href="@Url.Content("~/Content/Site.css")" />
      
	    <script type="text/javascript" src="@Url.Content("~/Scripts/jquery-1.6.2.min.js")"></script>
        <script type="text/javascript">
            $(document).bind("mobileinit", function() {
                // As of Beta 2, jQuery Mobile's Ajax navigation does not work in all cases (e.g.,
                // when navigating from a mobile to a non-mobile page, or when clicking "back"
                // after a form post), hence disabling it.
                $.mobile.ajaxEnabled = false;
            });
        </script>
        <script type="text/javascript" src="@Url.Content("~/Scripts/jquery.mobile-1.0b2.min.js")"></script>

      <link rel="stylesheet" type="text/css" href="qunit/qunit.css" media="screen">
      
      <script type="text/javascript" src="js/libs/modernizr-2.0.min.js"></script>
      <script type="text/javascript" src="js/script.js"></script>
	  <script type="text/javascript" src="qunit/qunit.js"></script>
	  <script type="text/javascript" src="tests.js"></script>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Rouneh10
Rouneh10

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of westdh

ASKER

That was it thanks