Hello, I have a GridView with the following columns.
I want the second column(out-time) to be filled with current time on the button click in the third column which has to persist till the page is closed. Please gimme an idea. I will appreciate any help.
Code:
<asp:GridView ID="myGridView" runat="server" AutoGenerateColumns="False"/> <Columns> <asp:BoundField DataField="name" HeaderText="Name" ReadOnly="True" /> <asp:BoundField HeaderText="Out-Time" /> <asp:ButtonField ButtonType="Button" CommandName="Select" Text="Button" /> </Columns>
Comment