ASP.NET Social Networks—Blogs in Fisharoo
Problem
This article, as stated in Introduction, is all about adding the Blogging feature to our site. This will handle creating and managing a post....
ASP.NET Social Networks—Making Friends (Part 1)
Problem
There are many aspects to building relationships in any community—real or virtual. First and foremost is initiating contact with the people whom you will...
Data Tables and DataTables Plugin in jQuery 1.3 with PHP
In this article by Kae Verens, we will look at:
How to install and use the DataTables plugin
How to load data pages on request from...
Calendars in jQuery 1.3 with PHP using jQuery Week Calendar Plugin: Part 1
There are many reasons why you would want to display a calendar. You can use it to display upcoming events, to keep a diary,...
Calendars in jQuery 1.3 with PHP using jQuery Week Calendar Plugin: Part 2
Deleting events
After creating, moving, and editing events, we might come across a case where the edit form is different from the create form. There...
AJAX Chat Implementation: Part 2
Create a new file named index.html, and add this code to it:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml_lang="en" lang="en">
<head>
...
AJAX Chat Implementation: Part 1
Lets get started. We'll keep the application simple, modular, and extensible. We won't implement a login module, support for chat rooms, the online users...
Implementing AJAX Grid using jQuery data grid plugin jqGrid
In this article by Audra Hendrix, Bogdan Brinzarea and Cristian Darie, authors of AJAX and PHP: Building Modern Web Applications 2nd Edition, we will...
AJAX Form Validation: Part 1
The server is the last line of defense against invalid data, so even if you implement client-side validation, server-side validation is mandatory. The JavaScript...
AJAX Form Validation: Part 2
How to implement AJAX form validation
In this article, we redesigned the code for making AJAX requests when creating the XmlHttp class. The AJAX form...