making the web extensible

MessageControl is an ASP.NET control which let you create user message like Gmail Application.


This control is part of the XWT toolkit. Please download and read the MessageControl.


Also read the  Code Project article about MessageControl at the following location.
http://www.codeproject.com/Tips/121974/Gmail-Style-User-Message-Control.aspx

jQuery 1.4.3 final version is released. There are some significant enhancement has been done for the entire library, mainly in the performance. Following are some of the new features of jQuery 1.4.3

  • CSS Module Rewrite – Entire CSS Module has been re-written for extensibility. You can write custom CSS plug-in now to extend the .css() and .animate() functions.
  • Data – There are some enhancements on this area as well. HTML 5 data-attributes, JavaScript object and Events are included in those enhancements.
  • Traversing - The performance of nearly all the major traversal methods has been drastically improved. For example .closest(), .filter() (and as a result, .is()), and .find() have all been greatly improved.
  • Ajax - A few new Ajax features have added. This should be an advantage for plugin authors.
  • Events - A convenient shortcut for binding a function that does nothing but return false (preventing the default action and stopping the event bubbling).
  • Effects - All animate methods now support easing. A new property that exposes the rate at which all effects fire (in milliseconds – defaults to 13) also added.
There are much more enhancements for the new jQuery library. You can read in more detail from the following URL.

Extensible-Web Toolkit(XWT) RC1 released. The toolkit provides simple web controls, framework library for ASP.NET development and built-in integration for jQuery. It will also provide some useful utilities for Web Application developers.

Download the XWT Toolkit

Please read the Get Started Guide.

Chrome supports Webkitnotifications and Google has done a great job with their notifications for Gmail. This example shows how to create a recurring notification using JavaScript timer and webkitnotification object.


In order to create a notification the user must first allow notification in their browser. Click on “Allow notification” button in the ASP.NET sample and the permission will be granted.

Following code block will show you how simple is to create a notification object and show it on browser.

notify = window.webkitNotifications.createNotification('iconUrl', 'Extensible-web latest article', 'http://www.extensible-web.com');
notify.show();


Download the full source code.

Download the latest jQuery 1.4.3 RC 1 from the following locations;

To get the selected value using jQuery in ASP.NET dropdown list;

 $("select[id$='DropDownList1']").val();

To get the selected text :

$("select[id$='DropDownList1'] :selected").text();

This sample code shows a cool fading effect when showing a saved text. This code specially useful when you write a comment module for an web application. It uses jQuery AJAX and the code is optimized for speed.

Download the code

You can now fix the ASP.NET bug using your windows update. Read more regarding the update on the following link.
http://weblogs.asp.net/scottgu/archive/2010/09/30/asp-net-security-fix-now-on-windows-update.aspx

Download the code

jQuery has been the primary JavaScript library for most of the web applications these days. The following tutorial will show you -- how to use jQuery AJAX to save and load data in ASP.NET applications. The following sample will do two things.

  1. Save Customer to Database
  2. Load Customer from Database
The following diagram will give an overview of the process.
In order to call jQuery AJAX method, you must first include latest jQuery library file in the ASP.NET page. You can get the latest jQuery library from here
You can download the complete sample from here