shadow9449
Registered User.
- Local time
- Today, 15:04
- Joined
- Mar 5, 2004
- Messages
- 1,032
To anyone using this solution, I just want to point out one small thing:
I have a real user beta testing and she found that if she includes an ampersand in the message, anything after the & does not send as the POST command sees the & as a parameter marker. My solution is to make this simple change on the OK button (using the example from the blog post):
That was the & is encoded properly before it's sent.
I have a real user beta testing and she found that if she includes an ampersand in the message, anything after the & does not send as the POST command sees the & as a parameter marker. My solution is to make this simple change on the OK button (using the example from the blog post):
Code:
Dim msg As String
msg = Replace(Me.txtMessage.Value, "&", "%26")
That was the & is encoded properly before it's sent.