Previous Article Scrolling Page with ASP Classic And JQuery |
Sorting with Ajax and ASP Classic |
Next Article Submit Form with AJAX and disable button once complete |
Coding Article #: 43 - Published On: November 28, 2012 @ 20:20:21 PM - Last Updated on: November 28, 2012
This article has been Favorited 23 timesJoin today, and add this to your favorites.
Share With Friends (Updated 6-8-2010)
Using this method to sort through your records with ASP and Jquery is really easy and fun.
It is fun because it is so simple to implement into your projects.
Just add in the JS file and you are off and ready to go.
Enjoy
View Live Example«
It is fun because it is so simple to implement into your projects.
Just add in the JS file and you are off and ready to go.
Enjoy
View Live Example«
<table class="sortable">
<tr><td><strong>First Name</strong></td>
<td><strong>Last name</strong></td>
<td><strong>Login name</strong></td>
<td><strong>Server</strong></td>
<td><strong>Date</strong></td>
</tr>
<%While Not rsGet.EOF%>
<tr>
<td><%=rsGet("Nachname")%></td>
<td><%=rsGet("Vorname") %></td>
<td><%=rsGet("Login") %></td>
<td><%=rsGet("Server")%></td>
<td><%=rsGet("Datum")%></td>
</tr>
<%
rsGet.MoveNext
Wend
rsGet.Close
Set rsGet = Nothing
objConn.close
Set objConn = nothing
%>
</table>
Post to Facebook about: Sorting with Ajax and ASP Classic