I have the control id name in string, and try to find it in the event handler:
1 protected void btnGo_OnClick(object sender, EventArgs e)
2 {
3 ((TextBox)Page.FindControl("txb" + strColumn)).Text
4 }
but that throws an object reference not set to an instance of an object. It seems as if the control cannot be found?