Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have very urgent so Please help me, " how to store the gridView Templatefield Textbox values to the database when that textbox assigning in Column cell for multiple Rows in ASP.Net with C# coding "
Posted
Comments
ZurdoDev 9-Apr-14 15:01pm    
No one can help you until you explain clearly what you need. This does not make sense to me.
VICK 10-Apr-14 0:36am    
RyanDev is right. Do explain your problem a bit more with the addition of HTML Content of Gridview and code you are using!.

:)

1 solution

may b this will help

XML
//Text='<%#Eval("ColumnName") %>'
 <asp:TemplateField HeaderText="First Name">
               <ItemTemplate>
                 <asp:TextBox ID="lblFirstName"  runat="server" Text='<%#Eval("FirstName") %>' ></asp:TextBox >
               </ItemTemplate>
  </asp:TemplateField>
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900