';系统Web,版本=4.0.0.0,区域性=中性,PublicKeyToken=b03f5f7f11d50a3a

本文关键字:区域性 中性 b03f5f7f11d50a3a PublicKeyToken 版本 系统 Web | 更新日期: 2023-09-27 18:01:13

我想从Windows窗体应用程序访问Web应用程序的根url。

string rooturl = Billing_XML_WebTracking.WebForm1.RootUrl;
string url = rooturl + "/WebForm1.aspx";
webBrowser1.Navigate(url);

因此,我将以下代码添加到Web应用程序的Web.config中:

<assemblies>
        <add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</assemblies>

Web.config文件的最终代码是

<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
      </assemblies>
    </compilation>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
  </system.web>
</configuration>

但在构建解决方案时,它给出了以下错误类型"系统。网状物UI。页面"是在未被引用的程序集中定义的。必须添加对程序集"System"的引用。Web,版本=4.0.0.0,区域性=中性,PublicKeyToken=b03f5f7f11d50a3a'。

请帮帮我。感谢

';系统Web,版本=4.0.0.0,区域性=中性,PublicKeyToken=b03f5f7f11d50a3a

References中,必须添加System.Web.dll