3 Dec
2004

Parsing Page Parameters in ASP.Net

This will be obvious to most, but I am slow to catch up to the rest of you.  Are you tired of writing parameter validation code in your ASP.Net pages? Usually it looks something like this: 1protected override void OnLoad(EventArgs e) 2{ 3   if( !this.IsPostBack ) 4   { 5       projName = this.ParseRequiredParam(“p”); 6       if( projName == null […]

Read More