Is it possible to use jQuery in a classic ASP application?

We have a great classic ASP application that we rewrite in ASP.NET. We will not finish rewriting, testing, etc. Until the end of next year. In the meantime, we are getting a lot of pressure to create the interface of a classic ASP application.

Is it possible to use jQuery with classic ASP?

+3
source share
9 answers

jQuery is a javascript framework and should in no way interfere with your classic ASP.

jQuery can be used on the client side, but can only work with what it can / can request.

+6
source

Mootools , , JScript ASP rock!:)

+2

, . ASP HTML, javascript. ( jQuery)

+1

, , jQuery - , JavaScript, jQuery?

+1

jQuery -. HTML-.

, , javascript , DOM .

+1

, - :)... .

, PHP, ASP, ASP.NET, ASP.NET MVC, CGI.... , HTML- . "" .

Javascript - " ", , , " " (DOM). Javascript -, "" . , Netscape , .

jQuery... , , , , javascript ()...

jquery , imho, javascript , , , , jquery .

jquery.com .

+1

ASP ASP.Net - , HTML .. .

JavaScript - , JQuery - , JavaScript, - ( ).

, , .

0

JQuery - ASP.

. , , ASP javascript, :

function myjavascripfunction(){
  $("#pageTitle").html(<%= rs("Title")%>);
}

JQuery ASP , ASP .

PS: ASP-to-JSON, JSON. .html-, ajax- .asp-, - .

This way you have a reusable .html page that you can just copy the insert when switching to another server language. All you have to do is make some .php or .aspx pages that also return JSON and call them instead of .asp.

0
source

jQuery is server independent (ASP.NET), this is the client side. You can use any technology on the server that you like and still use jQuery.

0
source

Source: https://habr.com/ru/post/1709589/


All Articles