I've got users clicking a confirmation link from their email. I'm processing the click, but I want to send them to a Success or Fail page, depending on the result of the confirmation check.
I've seen the SendRedirect, but I don't want to send a code 302. It should just be normal.
For example, they click:
and my confirm handler processes that, and then sends them either to
or
How do I handle that?
I've seen the SendRedirect, but I don't want to send a code 302. It should just be normal.
For example, they click:
and my confirm handler processes that, and then sends them either to
or
How do I handle that?