Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
i m trying to open a url in browser from vb.net using process.start("www.url.com"), i need to pass some value using post method. how it is possible, if get method means i will pass the value like process.start("www.url.com?value=xxxx"). How to do this in post method,
Please help me
Posted

1 solution

You can't. You're not doing a post, you're not even interacting with the browser. You're telling windows to launch a URL. You can't embed post data in that, all you can do is put stuff in the query string, as you have.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900