pmrMichael
New member
- Joined
- May 20, 2008
- Messages
- 2
- Programming Experience
- 1-3
I wanna do something like this
Dim strExampledotcom as String
strExampledotcom = (whatever to get a webpage)
(do stuff)
(etc...)
I want to test the first word in the page.
https://new.aol.com/productsweb/subflows/ScreenNameFlow/AjaxSNAction.do?s=test&f=&l=es
It says "Sorry!" if the screen name is taken.
It says "Congratulations!" if it's not.
I'd like to make the request url like this:
"https://new.aol.com/productsweb/subflows/ScreenNameFlow/AjaxSNAction.do?s=" + strSNtocheck +"&f=&l=es"
inb4 remove html: I already figured I need to do this.
Dim strExampledotcom as String
strExampledotcom = (whatever to get a webpage)
(do stuff)
(etc...)
I want to test the first word in the page.
https://new.aol.com/productsweb/subflows/ScreenNameFlow/AjaxSNAction.do?s=test&f=&l=es
It says "Sorry!" if the screen name is taken.
It says "Congratulations!" if it's not.
I'd like to make the request url like this:
"https://new.aol.com/productsweb/subflows/ScreenNameFlow/AjaxSNAction.do?s=" + strSNtocheck +"&f=&l=es"
inb4 remove html: I already figured I need to do this.