If you take some of your scripts and make them external to the page I believe the page should load just fine.
Here is a couple examples of how to refer to it:
Just place them in the head section of your page.
<script type="text/javascript" src="Scripts/example.js"></script>
For css it works pretty much the same:
<link rel="stylesheet" type="text/css" href="example.css" />
I hope this helps.