Bug or intentionally removed? (Directory a hrefs no longer work)
Options
I used to be able to dump clickable links to relevant directories via
LINQPad.Util.RawHtml("<a href=\"" + path + "\" >link</a>").Dump(path);however it seems it no longer works, was this removed or just lost?
Comments
-
Probably some Internet Explorer protection.
You can use Hyperlinq to bypass this limitation:new Hyperlinq(path, "link").Dump(path);
-
And if that doesn't work, you can bypass the IE protection with this:
new Hyperlinq (() => Process.Start (pathOrURI), "Click me").Dump();
-
That works, thanks