Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Process.Start("http://www.google.at");
ProcessStartInfo psi = new ProcessStartInfo("iexplore.exe", "http://www.google.at");
Process.Start(psi);
...
....Code:Process.Start("http://www.google.at");
Viel Spaß.