
September 8th, 2003, 07:37 AM
|
|
Contributing User
|
|
Join Date: Aug 2003
Location: Sheffield, UK
Posts: 94
Time spent in forums: < 1 sec
Reputation Power: 6
|
|
|
Opening web pages and parsing data collected from vb apps to it
Hey guys
Imagine the scenario - you're making a little application in vb.net and it calls some system defined variables - username and domain name.
You do your jiggery pokery to it, and you realise that you have to send the user to an asp web page. However, to make things worse, you have to send some of the data that you collected earlier within vb.
So, my question is - how do you get vb.net to launch the asp page, with the already-collected data?
im assuming it'll be something like:
Public uname As New String(Environment.UserName)
something.systems.based.to.open.browser("http://mydomain.com/mysubdir/mypage.asp?un="& uname")
i've tried using System.Diagnostics.Process.Start("webpageurl") but it doesnt like the ?un="& bit thereafter the main url..
any suggestions?
Thanks in advance.
Chris
|