Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
3k views

Bound Column in ASP Grid view when invisible cannot be accessed

I have a GridView with BoundColumns. The first 2 columns are hidden and I would like to access them using gridView1.Rows[0].Cells[0].Text and gridView1.Rows[0].Cells[1].Text respectively and I get a ...
2
votes
2answers
592 views

Possible to call a function inside BoundColumn.DataField?

<asp:BoundColumn DataField="pos" HeaderText="Principal Office" /> would it be possible to somehow... <asp:BoundColumn DataField="postProccess(pos)" HeaderText="Principal Office" /> ...
1
vote
1answer
312 views

How do I access the text of a selected BoundColumn of a DataGrid?

<asp:DataGrid ID="dgResetPassword" DataKeyField="user_id" OnItemCommand="resetSelect" CellPadding="10" HeaderStyle-BorderStyle="none" AutoGenerateColumns="False" runat="server" ForeColor="#333333" ...