How can we write code to Add textbox Control In DataGrid how to updateing datagrid using xml codewith out connection

Showing Answers 1 - 4 of 4 Answers

balaji

  • Oct 8th, 2006
 

Hai,

<itemTemplate>

<tr>

<td>

<asp:TextBox id="t1" runat="server" />

</td>

</tr>

</itemTemplate>

DataSet  ds =new DataSet();

ds.ReadXml(Server.MapPath(".xml"));

dgGrid.DataSource=ds;

dgGrid.DataBind() ;

  Was this answer useful?  Yes

hi

  • Oct 10th, 2006
 

this is very good answer

  Was this answer useful?  Yes

Rashid Anwar Saifi

  • Oct 17th, 2006
 

Ya it works

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions