Hi!
I have a kind of a stupid question. I have a link that I want to declare as string and put textbox values in it.
This is what I have so far:
How can I add textbox values to this string so it would be like this:
http://api2.messente.com/send_sms/?username=Textbox1.Text&password=Textbox2.Text
&to=Textbox3.Text&text=Textbox4.Text
Thanks in advance.
I have a kind of a stupid question. I have a link that I want to declare as string and put textbox values in it.
This is what I have so far:
Code:
Dim address As String = http://api2.messente.com/send_sms/?username=xxxx&password=yyyy
&to=37251916062&text=test%20message
http://api2.messente.com/send_sms/?username=Textbox1.Text&password=Textbox2.Text
&to=Textbox3.Text&text=Textbox4.Text
Thanks in advance.