I solved. The solution is to consider the Postback status:
FUNCTION OnLoad() ... if .IsPostBack=.F. .txtRecipient.Text=Request.Querystring("Recipient") endif
FUNCTION OnLoad() ... if .IsPostBack=.F. .txtRecipient.Text=Request.Querystring("Recipient") endif
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