Launching the browser and transferring data to it from the winform application

I have a winform application that needs to open the URL in a new browser window and pass the data to it. In addition, the data is too large to pass query string parameters. Is there a way to launch a new browser instance and somehow transfer the data as form or session data?

+3
source share
6 answers

Not quite the answer to your question, but you can embed the IE control in your window and easily cope with this code. See: http://msdn.microsoft.com/en-us/library/2te2y1x6%28v=VS.85%29.aspx

0
source

, , , RandomNoobs. . , .

0

, , .

  • , -;
  • , , -, .
  • -, , , , ;
  • .

№ 1

XML, XML XML , -.

, Serialization .

, ! =)

0

0

1) ( , SQL)

2) , (, , GUID)

3) -

4) load this object from your database.

5)...?

6) Profit!

0
source

Link = "http://aaa.com/asdas.exe", for example. you can use this.

System.Diagnostics.Process p = new System.Diagnostics.Process();

   p.StartInfo.FileName = "\"" + Link + "\"";
   p.StartInfo.UseShellExecute = true;
   p.Start();
0
source

Source: https://habr.com/ru/post/1753326/


All Articles