C# Open HTML file with standard browser and jump to anchor
I am trying to open a local html help file. Currently i have this code: string filePath = @"C:Testdocs.html"; string headlineId = "anotherH"; string url = $"file://{filePath}#{headlineId}"; System.Diagnostics.Process.Start(url); This does work and opens the defined standard browser on the machine…