How can I pass a value from a windows app to a web page? I am able to open up the web page using System.Diagnostics.Process.Start
Thanks in advance!
How can I pass a value from a windows app to a web page? I am able to open up the web page using System.Diagnostics.Process.Start
Thanks in advance!
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
newbPosted Aug 14, 2008, 10:31 AM
Satish KathiPosted Aug 14, 2008, 10:05 AM
You can pass the values in query string to the calling web page
System.Diagnostics.Process.Start("IEXPLORE.EXE", "http://www.google.com/search?hl=en&q=MSDN");
newbPosted Aug 14, 2008, 9:34 AM
I have to create\open a web page (on a button click of a windows app) and then pass some values to the page.
Bechir BejaouiPosted Aug 13, 2008, 4:59 PM