Aug 25 2008

Captcha Using Asp.Net

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Here is a simple code to create a captcha image. This ASP.net code creates a bitmap image of a randomly selected string. I think this code is self explanatory. If you have any queries please post it as a [...]

Aug 11 2008

.NET Framework 3.5 Common Namespaces and Types Poster

The .NET Framework 3.5 Common Namespaces and Types Poster is downloadable as XPS or PDF format. Print one and hang it on your wall Download it here

    

Aug 2 2008

Ajax using post

Here is a sample code which uses POST method in XMLHTTP request.

var url="ajaxpage.php";
var parms="name=bobby"; //Parameters
xmlHttp.open("POST", url, true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", parms.length);
xmlHttp.setRequestHeader("Connection", "close");
xmlHttp.onreadystatechange = function() {
//On ready state execute the below code
if(http.readyState == 4 || http.status == 200) {
alert(xmlHttp.responseText);
}
}
xmlHttp.send(parms);

    

[...]

TAGS: ,
Aug 1 2008

5 Ajax calendars you shouldn’t miss

Vista Like Ajax calendar : The Vista-like Ajax Calendar (vlaCalendar) version 2 is a unobtrusive  web version of the slick and profound Windows Vista taskbar calendar, by using the mootools javascript framework, AJAX, XHTML, CSS and PHP. Read more here

Aeron Calendar : Calendar is a Javascript class that adds accessible and unobtrusive date-pickers to your [...]