Browse by Tags

All Tags » ASP.NET 2.0 (RSS)

Converting VS 2008 Website to Web Application by Mohamed Meligy

Background (skip if you know Web Application Projects) In VS 2002/2003, the web project model for a website was similar to "class library" projects, where you have a .CSPROJ or .VBPROJ file that keeps track of files "included" in the project, and compiles...

Prevent ASP.NET Validators from Massively Increasing Page Size by Mohamed Meligy

This is problematic with ASP.NET AJAX. The main Script Components are NOT sent to the client when in :Legacy” mode. This is “ By design ” in ASP.NET AJAX, although it is a clear limitation!! I’m investigating the problem for other solutions and will be...

ASP.NET Validators Client Side APIs: MSDN List Page by Mohamed Meligy

If you have ever thought that the famous if(Page_ClientValidate("validationGroup")) {/*JS Code*/}   and myValidator.ValidationGroup = "validationGroup"; are sure not enough client side capabilities in ASP.NET validators, you are...

Unit Test Friendly File Upload Handling in N-Tier Applications by Mohamed Meligy

The Problem In an N-tier application, you keep your logic in a business logic tier, typically a different VS project that can be used from a website, a windows service, or desktop application, and that should be valid to writ unit tests against on its...

ASP.NET 2.0 Themes: You know, you use! by Mohamed Meligy

Note: This is ported from my old weblog. Originally published June 22, 2006 First, I assume here that you know themes and read about them, but are a bit afraid or unfamiliar with using them. If you don't know what are Themes and skins in ASP.NET 2.0,...

GridView DataBinding Events by Mohamed Meligy

Note: This is ported from my old weblog. Originally published December 19, 2005 This is a well commented example for a GridView with implementation of RowDataBound and DataBound events. I also demonstrate in it some of the important properties of GridView...
More Posts