Browse by Tags
All Tags »
Web controls (
RSS)
To successfully let business logic drive the user interface, you need an extensive library of business rules. Here are the additional business rules available as attributes. In my “Peter’s Soapbox”, you will find attributes that I feel need to be provided to complete the library....
ASP.NET 4 introduces a new property on all controls: ClientIDMode . It lets web form developers minimize the size of the id= attribute written into HTML tags. It also helps them dictate the actual form of the ID, avoiding the mangled naming of previous...
In my recent posting “ What do you think of Dynamic Data? ”, users have offered many views on what ASP.NET Dynamic Data is and is not. In general, they feel like it’s for simple cases, mockups, and where customization isn’t needed. Everyone seems to agree...
This is part of a series of posts offering ideas to improve ASP.NET. I cringe when I see users would write recursive search code to find controls in the Page’s control tree. For example: public void UpdateTextBoxCss(Control parentControl, string css)...
This is part of a series of posts offering ideas to improve ASP.NET. I’m not a big fan of the FindControl() method (found on System.Web.UI.Control) for these reasons: To prepare for the search, it needs to build a sorted collection of all controls found...
More Posts