Question Query/Webrequest a URL

VBCurious

New member
Joined
Oct 14, 2013
Messages
1
Programming Experience
Beginner
Im working with a programmer and there seems to be a language conflict and Im not talking about programming.

In simple terms, I need a current program to send out a URL. Like a webquery. The program can already do an http request ,but it cant do
a webquery with the URL that is created.

for example this URL changes with each order.

http://www.xxxx-xxxxx.com/aspx?orderid=LRGRDHT&trackno=987654321&
service=2day&void=N&carrier=SPDY

Once the above URL is compliles it needs to be sent/executed or something.THAT'S IT

WHen I put it in my browser it works. For some reason it doesn't work in the program. I seen hes using VB So if anyone can give some tips commands so I can try and explain how he should approach this solution I would really appreciate it.
 
How do you "send out" a URL? Or do you mean "browse to", or maybe send it by email?

The URL you posted is to an ASP.Net script, do you just want to display the results in a window? If yes, then just use a webbrowser control and navigate to the URL.

You question is akin to asking "Why does my CD not work in my microwave when using a fork?". What are you expecting it to do in the first place? It's no real wonder the programmer can't understand you if you asked him like this, or maybe it's a language problem...
 
Back
Top