“/pc”应用程序中的服务器错误。 
--------------------------------------------------------------------------------分析器错误 
说明: 在分析向此请求提供服务所需资源时出错。请检查下列特定分析错误详细信息并适当地修改源文件。 分析器错误信息: 找到的名为“Infragistics.WebUI.Shared.v2”的程序集清单定义与程序集引用不匹配。源错误: 行 15:  <form id="Form1" method="post" runat="server">
行 16:  <FONT face="宋体">
行 17:  <igtbl:ultrawebgrid id="UltraWebGrid1" style="Z-INDEX: 100; LEFT: 24px; POSITION: absolute; TOP: 80px"
行 18:  runat="server" Height="384px" Width="832px">
行 19:  <DisplayLayout AutoGenerateColumns="False" AllowSortingDefault="Yes" RowHeightDefault="20px" Version="3.00"
 源文件: C:\Program Files\ec\Pc\AssetChangeListWebForm.aspx    行: 17 程序集加载跟踪: 下列信息有助于确定程序集“Infragistics.WebUI.Shared.v2”无法加载的原因。=== Pre-bind state information ===
LOG: DisplayName = Infragistics.WebUI.Shared.v2, Version=2.0.20041.1016, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb
 (Fully-specified)
LOG: Appbase = file:///C:/Program Files/ec/Pc
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file (C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: Infragistics.WebUI.Shared.v2, Version=2.0.20041.1016, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/pccenter/f84bac35/80b92098/Infragistics.WebUI.Shared.v2.DLL.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/pccenter/f84bac35/80b92098/Infragistics.WebUI.Shared.v2/Infragistics.WebUI.Shared.v2.DLL.
LOG: Attempting download of new URL file:///C:/Program Files/Ksec/PcCenter/bin/Infragistics.WebUI.Shared.v2.DLL.
WRN: Comparing the assembly name resulted in the mismatch: Revision Number 
--------------------------------------------------------------------------------
版本信息: Microsoft .NET Framework 版本:1.1.4322.573; ASP.NET 版本:1.1.4322.573 这是什么原因?如何解决

解决方案 »

  1.   

    你使用的控件出了问题
    控件的声明出了问题,检查你页面上面<%@...%>中的内容看和你第十七行的代码有什么地方不匹配。
      

  2.   

    没有,那个控件需要安装,我把页面拷贝到别的机子上,没有安装控件的,但是包含支持控件的dll 文件,就出现这个问题。不知道为什么。
      

  3.   

    这是因为你的控件没有经过安装的注册过程,就和那个treeview控件,如果你只拷贝DLL文件是不能使用的
    1、在其他机子上运行你控件的安装程序。
    2、如果第一步不方便实现,那么参考下面的配置来更改你的web.config文件
    <configSections>          <section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </configSections> <MicrosoftWebControls>      <add key="CommonFiles" value="/website/webctrl_client/1_0" /></MicrosoftWebControls>
      

  4.   

    lr2651(戎 The Two Towers)对就是你说的这个意思,但是我 <section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />不会写,尤其是 type这个怎么写?还是就把Version,PublicKeyToken改成我上面的就可以了。
      

  5.   

    <configSections>
    <section name="Infragistics" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" />

    </configSections> <Infragistics>

    <add key="CommonFiles" value="/Infragistics/Web/Shared/v2.00" /> </Infragistics>我这样写的,好像还是不行。
      

  6.   

    lr2651(戎 The Two Towers) 再帮我解释解释。