April 2007 Entries

My First Few Days @ a BIG BRAND

It was quite a thrilling experience when a bigbrand gave me the offer as a .net developer after my 3yrs of experience. I was thrilled to bits being a part of the big league , that too with such a big company . I was coming from relatively medium level company, with nice people (at least in my project and the HR guys, don't kow about the rest of them) . The induction meeting continued for 2 days @ the Park Hotel. Made some new freinds there. It was all going nice and fine UNTILL I was allocated in...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Enterprise Library 3.0 -April 2007

Guys Enterprise Library 3.0--April 2007 is out . This release of Enterprise Library includes: Caching Application Block, Cryptography Application Block, Data Access Application Block, Exception Handling Application Block, Logging Application Block, Policy Injection Application Block, Security Application Block and Validation Application Block. Download it from : http://www.microsoft.com/do...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

To Find a control that has caused the postback

public static Control GetPostBackControl(Page page){ Control control = null; string ctrlname = page.Request.Params.Get("__... if (ctrlname != null && ctrlname != string.Empty) { control = page.FindControl(ctrlname); } else { foreach (string ctl in page.Request.Form) { Control c = page.FindControl(ctl); if (c is System.Web.UI.WebControls.B... { control = c; break; } } } return control;} The above code is taken from http://ryanfarley.com/blog/... ... A...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati