M
Miguel Dias Moura
Hi,
i have this code line in a script in my ASP.net / VB web site:
dim msgNewsletterAction
msgNewsletterAction = Request.Form("newsletterAction")
if msgNewsletterAction = "go" Then
Code1
Else
Code2
End If
Code2 runs everytime even when msgNewsletterAction = "go". Code1 never runs.
I sent the value of msgNewsletterAction to an email address using
AspNetEmail.
I readed my email and the value of the variable was correct and equal to
"go".
So why doesn't Code1 runs?
Thanks,
Miguel
i have this code line in a script in my ASP.net / VB web site:
dim msgNewsletterAction
msgNewsletterAction = Request.Form("newsletterAction")
if msgNewsletterAction = "go" Then
Code1
Else
Code2
End If
Code2 runs everytime even when msgNewsletterAction = "go". Code1 never runs.
I sent the value of msgNewsletterAction to an email address using
AspNetEmail.
I readed my email and the value of the variable was correct and equal to
"go".
So why doesn't Code1 runs?
Thanks,
Miguel