Contents tagged with AJAX
-
AJAX Timeout Server Control
Don't you hate it when you are idle on a web app for just a bit too long, and your membership session gets timed out without warning? Your users sure do! Often times the user may not even realize he has been timed out until he finishes completing a form, and clicks the submit button. At which time not only has the user lost his session, he has lost his data too.
-
Check Username Availability with ASP.NET AJAX
Here is a little trick you can use to spice up your asp.net registration pages. I will use ASP.NET AJAX to inform the user whether the username they have entered is available. Rather than use the UpdatePanel, I will slim down the amount of data going over the wire for each ajax request. I will accomplish this using the PageMethods feature.