In this blog we will know how to insert records in textboxes and export those inserted values in xml format to a given location.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Insert_and_export_to_xml._Default" %>
<!DOCTYPE html
PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form
id="form1"
runat="server">
<div>
<asp:Label ID="Label1" runat="server"
Text="Id"
Width="100px"></asp:Label>
<asp:TextBox
ID="txt_eid"
runat="server"></asp:TextBox><br />
<asp:Label
ID="Label2"
runat="server"
Text="Name"
Width="100px"></asp:Label>
<asp:TextBox
ID="txt_ename"
runat="server"></asp:TextBox><br />
<asp:Label
ID="Label3"
runat="server"
Text="Address"
Width="100px"></asp:Label>
<asp:TextBox
ID="txt_eaddress"
runat="server"></asp:TextBox><br />
<asp:Label
ID="Label4"
runat="server"
Text="Salary"
Width="100px"></asp:Label>
<asp:TextBox
ID="txt_sal"
runat="server"></asp:TextBox>
<asp:GridView
ID="GridView1"
runat="server">
</asp:GridView>
</div>
<br
/>
<asp:Button ID="btnaddrecords"
runat="server"
onclick="btnaddrecords_Click"
Text="Add
Export Records" /><br />
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label>
</form>
</body>
</html>

Join the conversation! Your thoughts help the community grow.