---
title: "How to use jQuery library in our ASP.Net project?"  
description: "How to use jQuery library in our ASP.Net project?"  
author: "Chris Anderson"  
published: 2011-09-17  
updated: 2020-09-24  
canonical: https://www.mindstick.com/interview/1272/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 Chris Anderson

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/1272/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.
