jQuery Tutorials ( Learn – Practice – Expert )
Posted by Ramani Sandeep on August 31, 2009
Article 1: Using jQuery With ASP.NET
This article has everything that is needed by programmer who want to start learning jQuery.
It includes the following topics:
- Using jQuery in ASP.NET Page
- jQuery Selectors
- jQuery Chainability
- jQuery Object Accessors
- jQuery Events
- Ajax using jQuery and ASP.NET
- jQuery Ajax with JSON data
- Effects with jQuery
Read Full Article: click here…
Article 2: Using jQuery to consume ASP.NET web services
First, It’ll cover the two requirements necessary when calling an ASMX web service that’s being JSON serialized by the ASP.NET AJAX extensions.
Then, It’ll show you how to do this with jQuery.
Finally, I’ll update the deferred content loading example accordingly.
Read Full Article: click here
Article 3: ON Hijacking and How ASP.NET AJAX 1.0 Avoids these Attacks
Recently some reports have been issued by security researchers describing ways hackers can use the JSON wire format used by most popular AJAX frameworks to try and exploit cross domain scripts within browsers. Specifically, these attacks use HTTP GET requests invoked via an HTML <script src=""> include element to circumvent the "same origin policy" enforced by browsers (which limits JavaScript objects like XmlHttpRequest to only calling URLs on the same domain that the page was loaded from), and then look for ways to exploit the JSON payload content.
Read Full article: click here