谢谢btut2004(《电子产品世界》程序员,卖富爸爸光盘)

解决方案 »

  1.   

    ASP.NET Website Programming: Problem - Design - Solution, C# Edition的中文版就是清华大学出版社出的《ASP.NET WEB站点高级编程 提出问题-设计方案-解决方案》
    我在wrox的官方网站下载了该书的源码。
    但是生成时老是提示错误信息:
    对程序集“C:\Documents and Settings\Administrator\VSWebCache\MAO\ThePhile\obj\Debug\ThePhile.dll”签名时加密失败 --“读取密钥文件“\Wrox\Keys\ThePhile.snk”时出错 -- 系统找不到指定的路径。 ”有人知道为什么吗?谢谢了
      

  2.   

    修改所有AssemblyInfo.cs的
    [assembly: AssemblyKeyFile(@"wrox\Keys\ThePhile.snk")]试试。
      

  3.   

    将AssemblyInfo.cs
    中的
    [assembly:AssemblyKeyFile(@"ThePhile.snk")]
    全部都改为
    [assembly:AssemblyKeyFile("")]
    就可以通过编译了