Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How to acess textbox which is in template of datagrid control
In the OnDataBound or OnItemCreated (and probably a few others) events you can use something like: e.Item.FindControl("ControlID") The control doesn't exist until the datagrid is databound so theres no way to access it outside these events.
e.Item.FindControl("ControlID")