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 times
Join today, and add this to your favorites.
Coding Source - Share on MySpace Coding Source - Share With Facebook Coding Source - Share on Twitter Coding Source - Share on Reddit Coding Source - Share on Digg It Coding Source - Share on Stumble Upon It Coding Source - Share on Delicious
Share With Friends (Updated 6-8-2010)

Supported Files
File Download:
carrzkiss_082255Q_24936937.zip
File Size: 18.02 KB
Unzip with
Download winzip today!(OR)
Screenshot of Source Code
Coding Source - Sorting with Ajax and ASP Classic
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«


<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