jlcruzAME
Member
- Joined
- Oct 18, 2012
- Messages
- 21
- Programming Experience
- 1-3
Below is the current code I have functioning on my laptop to test a button that passes information to another page.
The problem is, when I put this on the web server and try to access it it just looks like I'm refreshing the page when I click the link. But on my laptop, it was working and opening the link I needed it to. Is there another way to do this kind of thing when someone is accessing the site on the web server?
Any help is appreciated.
VB.NET:
picAddress = "http://sitename.com" picAddress = picAddress + woNumber
picAddress = picAddress + "&value2="
picAddress = picAddress + workReq
picAddress = picAddress + "&value3="
picAddress = picAddress + addy
System.Diagnostics.Process.Start(picAddress)
The problem is, when I put this on the web server and try to access it it just looks like I'm refreshing the page when I click the link. But on my laptop, it was working and opening the link I needed it to. Is there another way to do this kind of thing when someone is accessing the site on the web server?
Any help is appreciated.