473,405 Members | 2,444 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Maintain a DataTable between postbacks...

I have a DataTable from which I am trying to delete rows using the
DataGrid control. However, I'm having trouble maintaining the changes
to the DataTable between PostBacks. This is my first go 'round with
the DataGrid control, so pardon me if there are glaring mistakes...

public partial class control_panel_mail_Default : System.Web.UI.Page
{
private DataTable dt;

protected void Page_Load(object sender, EventArgs e)
{
dt = new DataTable();
LoadContacts();
}

private void LoadContacts()
{
if (!IsPostBack)
{
DataColumn dc;

dc = new DataColumn();
dc.ColumnName = "blog_contact_firstname";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dc = new DataColumn();
dc.ColumnName = "blog_contact_lastname";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dc = new DataColumn();
dc.ColumnName = "blog_contact_email";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

SqlConnection loConnection = new
SqlConnection(ConfigurationManager.AppSettings["Data_Connection_String"].ToString());
SqlDataAdapter loAdapter = new SqlDataAdapter("SELECT
blog_contact_firstname, blog_contact_lastname, blog_contact_email FROM
tbblog_contact WHERE blog_contact_deleted = 0 AND blog_contact_optout =
0 ORDER BY blog_contact_firstname", loConnection);
loAdapter.Fill(dt);

gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}
else
{
dt = ViewState["ContactList"] as DataTable;
gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}
}

protected void gvRecipientList_RowDeleting(Object sender,
GridViewDeleteEventArgs e)
{
DataRow dr = dt.Rows[e.RowIndex];
dt.Rows.Remove(dr);
ViewState.Add("ContactList", dt);
}
}

It fails on the statement:
DataRow dr = dt.Rows[e.RowIndex];
stating that the object reference not set to an instance of an
object... This happens even on the very first PostBack after the
initial load of the page.

Thanks in advance!
Jason

May 10 '06 #1
4 8509
I might be wrong...

The first time when you do a postback, there is no ViewState["ContactList"]
yet it seems. when it gets to the deleting part, i imagine there is nothing
for it to delete.

You should add ViewState.Add("ContactList", dt) into your
if(!Page.IsPostBack) block.


"Jason" <ja*************@hotmail.com> wrote in message
news:11**********************@q12g2000cwa.googlegr oups.com...
I have a DataTable from which I am trying to delete rows using the
DataGrid control. However, I'm having trouble maintaining the changes
to the DataTable between PostBacks. This is my first go 'round with
the DataGrid control, so pardon me if there are glaring mistakes...

public partial class control_panel_mail_Default : System.Web.UI.Page
{
private DataTable dt;

protected void Page_Load(object sender, EventArgs e)
{
dt = new DataTable();
LoadContacts();
}

private void LoadContacts()
{
if (!IsPostBack)
{
DataColumn dc;

dc = new DataColumn();
dc.ColumnName = "blog_contact_firstname";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dc = new DataColumn();
dc.ColumnName = "blog_contact_lastname";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dc = new DataColumn();
dc.ColumnName = "blog_contact_email";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

SqlConnection loConnection = new
SqlConnection(ConfigurationManager.AppSettings["Data_Connection_String"].ToString());
SqlDataAdapter loAdapter = new SqlDataAdapter("SELECT
blog_contact_firstname, blog_contact_lastname, blog_contact_email FROM
tbblog_contact WHERE blog_contact_deleted = 0 AND blog_contact_optout =
0 ORDER BY blog_contact_firstname", loConnection);
loAdapter.Fill(dt);

gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}
else
{
dt = ViewState["ContactList"] as DataTable;
gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}
}

protected void gvRecipientList_RowDeleting(Object sender,
GridViewDeleteEventArgs e)
{
DataRow dr = dt.Rows[e.RowIndex];
dt.Rows.Remove(dr);
ViewState.Add("ContactList", dt);
}
}

It fails on the statement:
DataRow dr = dt.Rows[e.RowIndex];
stating that the object reference not set to an instance of an
object... This happens even on the very first PostBack after the
initial load of the page.

Thanks in advance!
Jason

May 10 '06 #2
You are correct. When the page is initially loaded, (!IsPostBack) is a
true condition, so, it grabs the information from the database. That
is obvious because the GridView is populated with the correct data upon
initial load.

But, it is when you enter gvRecipientList_RowDeleting for the first
time, it's saying that "dt" is not set to an instance of an object.
That's what I'm not understanding at the moment...

May 10 '06 #3
So did it work for you or ..?

1. First time enter in the page, gridview binded directly to the data from
db.
2. PostBack, Gridview binded to a null ViewState object, so did "dt".
3. Enter gvRecipientList_RowDeleting, you try to retrieve "dt".Rows... but
"dt" is null at this time.
"Jason" <ja*************@hotmail.com> wrote in message
news:11**********************@u72g2000cwu.googlegr oups.com...
You are correct. When the page is initially loaded, (!IsPostBack) is a
true condition, so, it grabs the information from the database. That
is obvious because the GridView is populated with the correct data upon
initial load.

But, it is when you enter gvRecipientList_RowDeleting for the first
time, it's saying that "dt" is not set to an instance of an object.
That's what I'm not understanding at the moment...

May 10 '06 #4
I don't know if this is a proper solution, but I got this to work:

public partial class control_panel_mail_Default : System.Web.UI.Page
{
private DataTable dt;

protected void Page_Load(object sender, EventArgs e)
{
dt = new DataTable();
if (!IsPostBack)
{
LoadContacts();
}
else
{
dt = ViewState["ContactList"] as DataTable;
}
ViewState.Add("ContactList", dt);
gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}

private void LoadContacts()
{
DataColumn dc;

dc = new DataColumn();
dc.ColumnName = "blog_contact_firstname";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dc = new DataColumn();
dc.ColumnName = "blog_contact_lastname";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dc = new DataColumn();
dc.ColumnName = "blog_contact_email";
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

SqlConnection loConnection = new
SqlConnection(ConfigurationManager.AppSettings["Data_Connection_String"].ToString());
SqlDataAdapter loAdapter = new SqlDataAdapter("SELECT
blog_contact_firstname, blog_contact_lastname, blog_contact_email FROM
tbblog_contact WHERE blog_contact_deleted = 0 AND blog_contact_optout =
0 ORDER BY blog_contact_firstname", loConnection);
loAdapter.Fill(dt);

gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}

protected void gvRecipientList_RowDeleting(Object sender,
GridViewDeleteEventArgs e)
{
dt = ViewState["ContactList"] as DataTable;
dt.Rows.Remove(dt.Rows[e.RowIndex]);
ViewState.Add("ContactList", dt);
gvRecipientList.DataSource = dt;
gvRecipientList.DataBind();
}
}

May 11 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: GrantS | last post by:
I am trying to convert the VB.Net code example povided by http://authors.aspalliance.com/JimRoss/Articles/MaintainScrollPos.aspx into C# (ASP.Net)without success. No errors are thrown in the VB...
1
by: Paul Perot | last post by:
Hi All: I have a DataTable that I have defined Globally. I populate this datatable dynamically with file/folder information that I read directly from the server. I use this datatable...
4
by: bijoy | last post by:
My page has a Listbox called Rooms, a text field called chairPerson and a button called Add. When Add is clicked, the script needs to display the selected info in a datagrid. For example, if...
1
by: keithb | last post by:
Can someone provide general information on how to maintain state for a treeview control. Specifically, I need the application to maintain node expansion across postbacks. Thanks, Keith
2
by: Todd | last post by:
On an Asp.Net webpage, what's the best way to go about managing a list of items? When editing a library title I display a DataGrid of authors to which I'd like to be able to add and remove. ...
2
by: Evan M. | last post by:
Hello there, I have an interesting problem to takle. I'm creating a website that's going to be run in a local Intranet. The site uses a MasterPage / content page scheme, with the Master page...
2
by: DubSport | last post by:
I have created a datatable in a function, and it is populated with data. I want to call a new function from an ASP button, and write out some of the values in the datatable, using: string...
5
by: =?Utf-8?B?SnVsaWEgQg==?= | last post by:
Hi, I wonder if anyone can help? I've got a web form (intranet), .net version 1.1. I've got a sub that populates a datatable in a dataset, dependent on a dropdown field selection. This works...
5
by: jehugaleahsa | last post by:
Hello: What is the point of using a DataTable in ASP .NET? We are unsure how you can use them without 1) rebuilding them every postback, or 2) taking up precious memory. We are not sure how to...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.