本文介绍了Azure的SDK 1.3中打开两个浏览器窗口(或标签)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么是它在使用的Azure SDK 1.3它尽管我只定义了一个终点其实打开两个浏览器窗口(或标签)上运行我的网站:

Why is it that when run I website using Azure SDK 1.3 it opens two browser windows (or tabs) despite the fact that I have only defined one end point:

<Sites>
  <Site name="Web">
    <Bindings>
      <Binding name="Endpoint1" endpointName="Endpoint1" />
    </Bindings>
  </Site>
</Sites>

我有什么做的就是当我运行(使用F5)我的Azure应用程序从Visual Studio只是一个浏览器窗口出现?

What do I have to do to get just one browser window appearing when I run (using F5) my Azure application from Visual Studio?

推荐答案

因为它看起来,这是一个明确的Azure SDK错误。现在,随着2011年8月更新,这个错误已经消失。只有一个浏览器窗口,现在是打开的。

As it looks this was a clear Azure SDK bug. Now with August 2011 update, this error have disappeared. Only one browser window is now opened.

这篇关于Azure的SDK 1.3中打开两个浏览器窗口(或标签)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 08:50