vote up 2 vote down star

Do I need to remove code-behind *.cs files to use JQuery with ASP.NET?

If yes, why should I do that?

flag

Why has someone downvoted this? It's a genuine question, not everyone knows everything, regardless of how simple the question/answer. – Kezzer Jun 26 at 15:43

4 Answers

vote up 8 vote down

NO.

Code behind is server-side, jQuery is client side. They are two entirely different worlds. There should be no reason why you would need to remove the .cs files.

link|flag
vote up 0 vote down

Code behind doesn't have anything to do with jQuery, and can't affect it.

jQuery is a JavaScript library, you have to put your code that uses it in your .aspx files.

link|flag
vote up 0 vote down

You don't need to remove code-behind files.

JQuery is just a javascript library.

Do you need to remove javascript files? I don't think so.

link|flag
vote up 0 vote down

No, you just have to add jQuery to the .aspx file (or it's master page).

<script type="text/javascript" src="path/to/jquery.js"></script>

And you can use it! :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.