Hello People, wonder if you can help with this one. Only been at this a couple of weeks so please forgive if its a simple question, only I have gone completely braindead now.
Using:
SQL 2000
Visual Studio 2005
In
VB
I have a first page where the user enters a name. On clicking search this name is passed to a second page in the url.
Second page does a lookup in the db using querystring("id") in the url and returns the values to formview
What I need it to do is before it posts to the form do a second check to find what package they have and post the details accordingly.
So what I thought was an IF THEN ELSE statement
IF [Package] = 4 Then
Else IF [Package] = 3 Then
Etc etc
Only I dont know how to get the package number to the if statement. I have tried
IF Eval("Package") =
That didnt work
Any ideas on this. Appreciate any help