Recently I have been looking at the Twitter bootstrap, this is so far the best design toolkit to start your web site. There is a tutorial to start to learn it.
Also now there is a bootstrap package for asp.net mvc4 to install from Nuget.
If you want to use it directly in the MVC4 layout by adding the bootstrap minify script in the layout view page, you will have the error in browser such as,
Unhandled exception at line 6, column 27 in http://localhost:63410/Bootstrap/js/bootstrap.min.js
0x800a138f - JavaScript runtime error: Object expected
To fix this, you need to include JQuery (1.7 above) first before add the bootstrap.min.js
@Scripts.Render("~/bundles/jquery")
<script src="/Bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
2 comments:
fix my problem straight to the point. many thanks for this.
Post a Comment