Home

Windows 8 OutputPanel behavior - hyperlinks not opening

I recently picked up a new Windows 8 machine. Running some of my scripts on the new box, I have observed that any hyperlinks that I dump to the outputpanel do not open the links when I click on them. In particular, I am seeing this occur with file:// links. If I export the OutputPanel results to a html file and open that file in a browser, the links open fine. I suspect some sort of UAC limitation, but I'll be darned if I can locate a setting. Anyone see this behavior too?

this script exhibits the behavior

void Main()
{

Util.RawHtml("http link to LINQPad.net works from outputpanel").Dump();
Util.RawHtml(@"file link to C:\Users does not work from outputpanel").Dump();

}


Comments

Sign In or Register to comment.