|
-
May 7th, 2012, 02:46 PM
#1
Allowing my method to "see" that a row has already been selected from my gridview.
Hello,
My program has a gridview. It allows someone to select one of the rows.
I store the selected row info using the following:
GridViewRow row = GridView1.SelectedRow;
Later on in the code, I was to call a method I wrote that needs to use "row" (i.e. the data stored in that row in the gridview).
An exception is thrown saying that "Object reference not set to an instance of an object." I believe the method thinks that nothing has been selected....but it has been selected before this part of the code is called.
How can I make my method "see" that the row has been selected and therefore go ahead and use "row" (the instance of GridViewRow that was instantiated earlier)
Thank you,
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|