In this blog we will know how to display the inserted
records from textbox to a gridview.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Insertdata__textboxdisplaygridview._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="Name" Width="100px"></asp:Label>
<asp:TextBox ID="txt_name"
runat="server"></asp:TextBox><br />
<asp:Label ID="Label2" runat="server"
Text="Address"
Width="100px"></asp:Label>
<asp:TextBox ID="txt_address"
runat="server"></asp:TextBox><br />
<asp:GridView ID="GridView1"
runat="server">
</asp:GridView>
<asp:Button ID="btn_insert"
runat="server"
Text="Insert data
to Gridview"
onclick="btn_insert_Click" />
</div>
</form>
</body>
</html>
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using
System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Collections.Generic;
namespace
Insertdata__textboxdisplaygridview
{
[Serializable]
public class
fields
{
public string Name { get; set; }
public string Address { get;
set; }
}
public partial
class _Default
: System.Web.UI.Page
{
protected void Page_Load(object
sender, EventArgs e)
{
data = ViewState["_data"]
as List<fields>;
if (data == null)
data = new List<fields>();
}
List<fields> data = null;
protected void btn_insert_Click(object
sender, EventArgs e)
{
string Name =
txt_name.Text;
string Address =
txt_address.Text;
fields f1 = new fields();
f1.Name = txt_name.Text;
f1.Address = txt_address.Text;
data.Add(f1);
ViewState["_data"]
= data;
GridView1.DataSource = data;
GridView1.DataBind();
clear();
}
void clear()
{
txt_name.Text = "";
txt_address.Text = "";
}
}
}
Thanks for reading