how to get information from website
hi guys
this web site http://www.cma-cgm.com/eBusiness/Tracking/
is Container Tracking company and i must go into their web site to search for my container
i want program make this search !! not else and see if my container arrived or not !!
and thx !!
Re: how to get information from website
So, to save typing in the container number and pressing a button on the website you want to type in the container number and press a button in your program?
Try the Codebank thread on manipulating web based forms and data.
Re: how to get information from website
Don't use the WebBrowser control, I wouldn't recommend that. Try using a WebRequest, this one is simple:
Code:
http://www.cma-cgm.com/eBusiness/Tracking/Default.aspx?ContNum=Abc&T=5420131718414
ContNum looks like the reference type, and the value on the other side, T looks like a timestamp...
Re: how to get information from website