I have a page with a table of stuff and I need to allow the user to select rows to process. I\'ve figured out how to add a column of check boxes to the table but I can\'t se
What I ended up doing was tagging all my ID's with a know prefix and stuffing this at the top of Form_Load:
Form_Load
foreach (string v in this.Request.Form.AllKeys) { if (v.StartsWith(Prefix)) { var data = v.Substring(Prefix.Length); } }
everything else seems to run to late.