Fragment (anchor #) in .NET 4 WebBrowser Control getting lost with Adobe PDF Reader and file://

后端 未结 1 594
别跟我提以往
别跟我提以往 2021-01-14 21:15

I create an URI with a fragment (aka anchor #).

UriBuilder ub = new UriBuilder(\"file://path/doc.pdf\");
ub.Fragment = \"chapterX\";

The u

相关标签:
1条回答
  • 2021-01-14 21:32

    How about

    wb.Navigate("http://example.com#chapterX");
    

    ?

    0 讨论(0)
提交回复
热议问题