---
title: "How to use jQuery library in our ASP.Net project?"  
description: "How to use jQuery library in our ASP.Net project?"  
author: "Anonymous User"  
published: 2011-11-04  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/1337/how-to-use-jquery-library-in-our-asp-dot-net-project  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# How to use jQuery library in our ASP.Net project?

Download the latest jQuery library from jQuery.com and include the reference to the jQuery library file in our ASPX page.\
\
<script src="_scripts/jQuery-1.2.6.js" type="text/javascript"></script>\
\
<script language="javascript">\
\
$(document).ready(function() {\
\
alert('test');\
\
});\
\
</script>

## Answers

### Answer by Anonymous User

Download the latest jQuery library from jQuery.com and include the reference to the jQuery library file in our ASPX page.\
\
<script src="_scripts/jQuery-1.2.6.js" type="text/javascript"></script>\
\
<script language="javascript">\
\
$(document).ready(function() {\
\
alert('test');\
\
});\
\
</script>


---

Original Source: https://www.mindstick.com/interview/1337/how-to-use-jquery-library-in-our-asp-dot-net-project

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
