0

I want to launch a website in IE from my metro app. While launching the website post data also need to be send.

I tried using Windows.System.Launcher.LaunchUriAsync(uri);

I am facing two issues here. one, i am not able to send post data to the website. Second, the IE is taking only 50% of the screen. I want it to consume the entire screen.

How can i possibly do that?

TutuGeorge
  • 1,972
  • 2
  • 22
  • 42
  • I doubt telling a browser to send a POST request when it launches is possible; that would be a very weird and insecure thing for a browser to offer… Why don’t you send your request from within your app instead? – poke Apr 07 '15 at 06:52
  • That is possible if am using a webview inside my app to launch the webpage – TutuGeorge Apr 07 '15 at 07:20
  • Depending on what you want to do, you possible do not Need the webview. A POST Request often answers with data - not text/html. You could use HTTPClient instead – TGlatzer Apr 07 '15 at 07:33
  • How can I post data when launching a website? – TutuGeorge Apr 07 '15 at 09:12
  • 2
    You can only send a GET request with LaunchUriAsync. – crea7or Apr 07 '15 at 11:05
  • Is there any way to make the IE consume the entire screen. I couldn't find that option. – TutuGeorge Apr 08 '15 at 04:39

0 Answers0