Latest Asp.net Posts 

Read all about the topic Asp.net on jQuery Mastery - We give you the keys to unlock the true potential web UI design. Browse through articles written on this subject below, or check our tag cloud to see if you find anything interesting. As always, you can visit our home page to find the latest posts or view our RSS feed or get the current posts on this topic on our Asp.net RSS feed.

jQuery & Ajax Fun: Implementing a Paging Listbox

Many times in web forms we need to provide a listbox with lots of elements, A good solution is to filter and page these elements to speedup page loading and optimize DB/Network usage..

This is a complete implementation of a paging listbox using jQuery on client side and ASP.Net on server side. and should look like this..

The form web page, which also contains the JavaScript class to build the select box, of course don't forget to download the jQuery library.
<html>
<head>
<title>jQuery & Ajax Fun: Implementing a Paging Listbox</title>
<script type="text/javascript" src="JS/jquery-1.3.min.js"></script>
<script type="text/javascript">
function AjaxListBox() {
   this.source = '';
   this.divID= '';
   this.keyID= '';
   this.buttevent_event_on__ID='';
   this.lastKey= '';
   this.startup= true;
   this.minWidth=0;
   this.position [...]

Post Thanks More Tech Tips!!

Tags: HTML, Asp.net, Paging, Ajax, Javascript, jQuery, Dal, OOP

Monday, February 9th, 2009 No comments

ASP.Net from a PHP Perspective

Post Thanks .NET Coding!

Tags: Tutorial, Introduction, Net, Language, PHP, Programming, Asp.net, Microsoft, Asp

Thursday, February 12th, 2009 No comments

Creating a quick and dirty jQuery contentEditable Plugin - Rick Strahl

Creating a full featured editable component that handles a number of scenarios is quite complex. Some time ago I started in on this process with a wwEditable plug-in which I’ve used in a number of applications. It works, but it’s fairly large and even so has a few rough edges for full generic use. However, if you’re just after a quick and dirty mechanism for editing some text for the purpose of updating it there’s actually an easier way using the contentEditable attribute on DOM elements. The nice thing...

Post Thanks The Ajaxist!

Tags: Asp.net, Ajax, Javascript, jQuery

Thursday, May 28th, 2009 No comments