美文网首页
win7-IE11 和 HttpListener

win7-IE11 和 HttpListener

作者: InnoTech | 来源:发表于2018-04-09 15:28 被阅读0次

    1.在win7 上使用 HttpListener 异常

    HttpListener server = new HttpListener();

    server.Prefixes.Add("http://127.0.0.1:8515/");

    server.Start();

    System.Net.HttpListenerException: Access is denied 解决办法是用:

    netsh http add urlacl url="http://127.0.0.1:8515/" user=everyone

    link

    2.在win7上升级ie11,默认安装的是ie8

    貌似只能是win7 sp1 升级

    https://support.microsoft.com/zh-cn/help/18520/download-internet-explorer-11-offline-installer

    Windows 7 SP1(32 位)

    Windows 7 SP1(64 位)

    相关文章

      网友评论

          本文标题:win7-IE11 和 HttpListener

          本文链接:https://www.haomeiwen.com/subject/ylsihftx.html