Your signals may be a bit crossed here regarding the proper use of JQuery and ASP.NET.
JQuery is a wrapper that simplifies Javascript (in particular, access to page elements). It is a client side technology.
ASP.NET is mostly a server-side technology. While you can place controls on the page that will emit javascript (e.g. control validation) and there are a variety of ways in which Javascript is employed to simplify WebForms development, ASP.NET it isn't really about client-side programming in the same way that JQuery is.
Honestly, I wouldn't want ASP.NET to wrap JQuery as it would just lead to impedence mismatches between how you handle client and server-side processing. Plus, JQuery really is pretty easy.