Classic Asp + Mysql + Ajax Load

Classic Asp + Mysql + Ajax Load

emrah24emrah24 Posts: 2Questions: 1Answers: 0

Hi, I want to use the following ajax event in classic asp.
https://datatables.net/examples/data_sources/server_side.html

I look at this adrese
Https://datatables.net/development/serverside/asp_classic
But I could not get it working.

My codes
<%
Set cariler= Server.Createobject("ADODB.Recordset")
sql = "SELECT * FROM cari where firma_id="&Session("FIRMAID")&" and onay=1 order by id desc"
cariler.open sql,baglantim, 1, 3
Do While Not cariler.eof

response.write cariler("sirketadi")

cariler.movenext
Loop
%>

please help me

Answers

This discussion has been closed.