Help on DataSets

C

cagriandac

Hello,

I am creating an application using asp.net 2.0. But I am stuck
somewhere. I want to get values from a DataSet one by one on every
Page_Load. So I wrote my code in Page_Load but it didnt work, giving a
warning. Here is my code:

Code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Dim ds As DataSet1
Dim test As String
test = ds.Tables("pictureID").Rows(0)("pictureID").ToString
Label1.Text = test
End Sub

And the Warning:

Variable 'ds' is used before it has been assigned a value. A null
reference exception could result at runtime.


How can I handle this warning. Did I wrote the code in wrong place?

I created my DataSet using the menu in Visual Web Developer (Visual
Studio 2005). So I did not write any code for it.

Am I assigning the ds right?
I also assigned it as DataSet1TableAdapter. But it didnt work also. I
am a rookie and any help is appreciated.
 
E

Eliyahu Goldin

Dim ds As DataSet1 creates a new dataset. It has no connection with the one
you have created. You should be able to use the created one just by its
name. I am not familiar with Visual Web Developer, but usually what you
create is the schema for the dataset. On top of this, you need to load
actual data. And you have to make sure that the dataset gets populated on
every postback. For this you will have to either re-load it on every
postback or save it in a persistent location such as a session variable.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top