Tag Archives: jQuery

What ASP.Net developers should know about jQuery

1 comments
Dave Ward has published a very good article about jQuery for ASP.Net developers on the MIX site. I found the part about unobtrusive JavaScript particularly useful. With the recent improvements in ASP.Net for JSON and the ease of jQuery, all ASP.Net developers should embrace JavaScript for creating better user interfaces. You can find the article here: http://visitmix.com/Opinions/What-ASPNET-Developers-Should-Know-About-jQuery Bookmark [...]
Also tagged | 1 Comment

Building an AJAX web part with jQuery (Part 3)

1 comments
In part 1 of this series I explained a bit about the context and goal of creating an AJAX web part without using ASP.Net AJAX. I also showed the steps necessary for creating services that return data in the JSON format. In part 2 I showed you how to call these services from JavaScript and render the HTML for the [...]
Also tagged , , , | 1 Comment

Building an AJAX web part with jQuery (Part 2)

1 comments
In part 1 of this series I explained a bit about the context and goal of creating an AJAX web part without using ASP.Net AJAX. I also showed the steps necessary for creating services that return data in the JSON format. In this post I’ll show you how to call these services from JavaScript and insert the data in [...]
Also tagged , , | 1 Comment

Building an AJAX web part with jQuery (Part 1)

3 comments
In this series of posts I will describe how I build a web part full of AJAX functionality using jQuery and some plugins for jQuery. Why? ASP.Net AJAX is quite hard to implement using only code. Besides that, having multiple updatepanels and multiple triggers outside of these updatepanels, can complicate stuff very quickly. So I decided to see [...]
Also tagged , , | 3 Comments

jQuery performance optimization tips

1 comments
Sometimes all the cool effects and functionality you’ve build on top of jQuery turn out to be a bit sluggish. Here are a few tips to optimize performance. 1) Use jQuery 1.3+. This one utilizes the new Sizzle selector engine which is much faster then the selector engine in the jQuery versions before that. 2) Make your [...]
Tagged | 1 Comment

Using a template plugin for jQuery to parse JSON data

1 comments
When you’re building an AJAX control in .Net there a a few possibilities. One of them is using AJAX.Net updatepanels. This saves you from writing tedious javascript code to refresh parts of you page. With the arrival of javascript libraries such as jQuery it’s much easier to create the AJAX functionality you want with javascript. However, you still have [...]
Also tagged , | 1 Comment

Fix ASP.Net form submit behavior with jQuery

0 comments
In standard ASP.Net web form pages there’s only one form tag for the entire page. This unfortunately has some side effects on form submit behavior. In a standard HTML all forms are contained in their own form tag. When the browser receives a enter key press for the form the form is submitted. Because of the single form [...]
Also tagged | Leave a comment