Help writing conditional blocks

E

estafford

I am having trouble writing a conditional block using ASP.NET and C#.

I am trying to do something like this:
1. if page is PostBack
- transfer to another page

2. if not postback
- connect to database and get information using a querystring id and create
a DataReader (as DR).
- generate a Form to display using values from the database query.

The problem is that I get an error:
The name 'DR' does not exist in the class or namespace 'ASP.contact_aspx'

Because the page is not postback, the DataReader object is not created.
Is there any way around this?

I assumed that the code in condition 2 would be skipped because the
condition was false but it seems to trying to run through it anyway.
This process works in classic ASP but I cannot get it to work in ASP.NET.

I'd like to try to keep this confined to one page.
Suggestions??
 
C

Carl Prothman [MVP]

estafford said:
I am having trouble writing a conditional block using ASP.NET and C#.
I am trying to do something like this:
1. if page is PostBack
- transfer to another page
2. if not postback
- connect to database and get information using a querystring id and create
a DataReader (as DR).
- generate a Form to display using values from the database query.

The problem is that I get an error:
The name 'DR' does not exist in the class or namespace 'ASP.contact_aspx'

Did you include the "Imports System.Data.SqlClient" statement (for VB.NET) or
"using System.Data;" statement (for C#) at the top of your code-behind file?

Also, keep in mind, when you DIM an var in an IF statement, then that var only
has scope within the IF statement block. Same is true for TRY CATCH blocks...

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com
 
E

estafford

Bingo!!
Thanks Carl. Turns out I did not declair the DR variable outside the
function.
I assumed it was something more difficult and overlooked the obvious.

Such is the learning process...
Thanks Again.
 

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

Similar Threads


Members online

Forum statistics

Threads
473,744
Messages
2,569,480
Members
44,900
Latest member
Nell636132

Latest Threads

Top