I have a webpage sending email, I load recipient address from Request.Querystring
FUNCTION OnLoad() ... .txtRecipient.Text=Request.Querystring("Recipient")
then I can change manually recipient address before to send email.
The webTextBox for recipient has ControlSourceMode=TwoWay.
However even if I change manually the recipient address on webpage, the form sends email to original recipient (what loaded from Request.Querystring)
.oSmtp=CREATEOBJECT("wwSmtp") WITH .oSmtp ... .cRecipient=this.txtRecipient.Text
Please, what is wrong?
Thank you very much