Web Programming Methods in Visual Basic 6
Hello and wish you the best day.
One of my teachers in university has made me to give a presentation about computer stuff like programming, etc...
So the subject I have chosen is web programming with visual basic 6.
I have googled about this but the results were almost the same and they were about components like WebBrowser, Winsock, and INet Control.
Until my latest thread in vbforums some months ago, I was working with winsock,
then I found out about other objects (XmlHttpRequest, WinHttpRequest), thanks to dilettante.
http://www.vbforums.com/showthread.p...=1#post4729365
So now, I wanna wrap up this topic about web programming and present it to my classmates.
I believe there isn't a comprehensive topic about visual basic web programming.
The question I have:
-What are the methods by which you can develop a web program?
Answers I have:
- XmlHttpRequest
- WinHttpRequest
- Winsock
- Inet
- Webbrowser
- (You say)
Also he askd me to mention 3 applicable references, any help?
This will be my last activity related to vb6, as we are learning c++ in the university.
Thanks, and sorry about my bad English :(
Re: Web Programming Methods in Visual Basic 6
What do you mean by web program? Are you talking about a browser or a program that runs on a web server?
VB6 is not really well suited for web programming. It is over 15 years old and web methods have changed a lot in that period of time.
Re: Web Programming Methods in Visual Basic 6
Quote:
Originally Posted by
DataMiser
What do you mean by web program? Are you talking about a browser or a program that runs on a web server?
VB6 is not really well suited for web programming. It is over 15 years old and web methods have changed a lot in that period of time.
A program which connects to the internet and send or receive data to a web server (Sending POST/GET Requests).
Actually it works like a charm when you use XmlHttpRequest,
but I want my article to be about more than just one object.