Click here to Skip to main content
15,902,939 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
ASP.NET
<asp:Content ID="Content1" ContentPlaceHolderID="ABCD" runat="Server">

<asp:GridView ID="grd_subparts" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None">
<Columns>

<asp:TemplateField HeaderText="Sub Part Name" SortExpression="CRM_SUB_PART_NAME">
<ItemTemplate>
<asp:TextBox ID="txtsubpartname" runat="server" BorderWidth="1px" Text='<%#Bind("CRM_SUB_PART_NAME") %>'> 
</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

<asp:Button ID="btn_save" runat="server" Text="Save" />


this is my page attached with masterpage.....
i need to display the values of textbox that found in the gridview...using javascript...pls help me in this


[edit]Subject only: Try to describe your problem in a simple overview, so we can tell at a glance if we can help. "help me in javascripts" is not helpful - OriginalGriff[/edit]
Posted
Updated 23-Dec-11 22:04pm
v3

1 solution

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