Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Arun Banik

@Arun Banik
About
Posts
1
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • dynamically insert textbox in gridview and insert the data of textbox in database
    A Arun Banik

    Add a textbox in a GridView control. Usually, you will attach a GridView to a database table. Let's assume, you have a column called XYZ in the table. You can add an editable textbox to the GridView as shown below.

    <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"
    ShowFooter="true">

    <Columns>
        <asp:TemplateField HeaderText="XYZ">
            <ItemTemplate> <%#Eval("XYZ")%> </ItemTemplate>
            <FooterTemplate><asp:TextBox ID="tbXYZ" Width="200px" runat="server" /></FooterTemplate>
        </asp:TemplateField>
    
    </Columns>
    

    </asp:GridView>

    You will find the entire code here in in this article[^] Hope this helps.

    Hi, This is arun

    ASP.NET csharp asp-net database tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups