How have you guys handled working with jQuery includes
<script type="text/javascript" src="jquery.js"></script>
in Asp.Net MVC when working with partial views/view controls? Basically, I don't want to make the jquery include in the master page because I am not using jquery in all of my views, but I also want an easy way for a user control to be able to create the jquery include in the right location ('head') without creating duplicate jquery includes.
The best way would be to use a ScriptManaager, but I do not want to rely on ASP.Net Ajax for this in my application. Is there a 'lightweight' ScriptManager that I could use that would also allow the newly released intellisense for jquery?
I've created a WebControl that provides this functionality, but I don't get the intellisense support for VS2008, which I would really like.
Hope this makes sense.