ASP.NET AJAX username availability check

ASP.NET AJAX username availability check with UpdatePanel ASP.NET AJAX username availability check without UpdatePanel I used UpdatePanel in our project and it works alright. I didn’t read either of these posts when I did it. It was not too hard to figure out even though I did remember myself having some issues. However, the web … Continued

Lazy-Load on ModalPopup

This is the scenario: we have a Data control inside the Modal div, and we don’t want all the data inside this modal popup to be loaded when the main page is loaded. We want them to be loaded when the user decides to bring out the popup the first time. If Visible is set … Continued

RoundedCorner Web Control

Couple articles extracted from Scott Mitchell’s 4GuysFromRolla on RoundedCorner Web Control: Introducing the RoundedCorner Web Control Improving the RoundedCorner Web Control By Bryan Xu

Update Panel control

First step one should take to understand UpdatePanel – what it is and what it can do… MSDN – UpdatePanel Class MSDN – UpdatePanel Control Overview Introduction to the UpdatePanel Control Creating a SImple ASP.NET Page with Multiple UpdatePanel Controls Using the ASP.NET UpdatePanel Control with Data-Bound Controls Using the ASP.NET UpdatePanel Control with Master … Continued

Lazy-Load TabPanels

Matt Berseth’s blog talks about lazy-load for the Ajax Toolkit Tab Panels: http://mattberseth.com/blog/2007/07/how_to_lazyload_tabpanels_with.html The basic idea is to put an update panel inside each tab panel, along with a hidden button as the async trigger of the update panel. The tab panel provides an OnClientActiveTabChanged event, which then calls a JavaScript to click on that … Continued