ASP.NET 3.5

Couple general readings by Scott Mitchell on his 4GuysFromRolla:

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

MS Tutorial Video on Login/Membership/Profile/Roles

Securing your Web Site with Membership and Login Controls (Lesson 9 of the Beginners series) This tutorial demonstrates the uses of all the controls in the Login toolbox. It’s relatively simple and didn’t go into all the specific details of each control. It also shows how to use restrict people with authentication (User.Identity.IsAuthenticated) and specific … 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

Some Client-side Know-Hows

Referring to Scott Mitchell’s article “Client-Side Enhancements in ASP.NET 2.0” on 4GuysFromRolla, it contains How to programmatically set focus to a Web control How to add client-side script when a Button is clicked How to maintain scroll position on postbacks Attached with this is another article on “Resetting scroll positions” that talks about handling scroll … Continued