Home All Groups Group Topic Archive Search About

Transferring Data to a Website

Author
29 Nov 2006 1:57 PM
Arne Beruldsen
Back in my VB6 days I used the following code to transfer some info from my
app to a webpage.  The code looked like this:

ShellExecute 0&, "open",
"http://www.mycompsite.com/registration.asp?UserName=ux&Company=cx&LockingCode=sx"

What would I need to do in vb.net 2005?

Thanks

Author
29 Nov 2006 2:07 PM
Michel Posseth [MCP]
Hello Arne
Process.Start("http://www.google.com/search?hl=nl&q=michel+posseth&btnG=Zoeken&meta=")

process.start and your http string that is all you need

regards

Michel Posseth 



Show quoteHide quote
"Arne Beruldsen" wrote:

> Back in my VB6 days I used the following code to transfer some info from my
> app to a webpage.  The code looked like this:
>
> ShellExecute 0&, "open",
> "http://www.mycompsite.com/registration.asp?UserName=ux&Company=cx&LockingCode=sx"
>
> What would I need to do in vb.net 2005?
>
> Thanks