惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园 - 【当耐特】
月光博客
月光博客
Vercel News
Vercel News
D
Docker
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
有赞技术团队
有赞技术团队
雷峰网
雷峰网
博客园 - 聂微东
小众软件
小众软件
Y
Y Combinator Blog
腾讯CDC
L
LangChain Blog
The GitHub Blog
The GitHub Blog
宝玉的分享
宝玉的分享
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss

博客园 - 东哥技术专栏 - Coldwine's Blog

SQL Server Transactional Replication 中的 CommitBatchSize 和 CommitBatchThreshold 属性 转: SQL Server Analysis Service中Cube的结构 Cannot connect to an Analysis Services named instance after installing SQL Server Express 今天遇到一个问题才知道如果安装了命名实例 SSIS Service 需要手动更改配置文件 Data Mining Tutorial数据挖掘教程 (PART-1) 一些关于“数据挖掘介”技术的有用文档 The Fundamentals of the SQL Server 2005 XML Datatype SSL协议与数字证书原理 (ZT) PKI 技术白皮书 (ZT) Windows 2000 公钥基础结构详解 (ZT) SQL Server 2000 之前的版本号对照表 关于 c# 的 Partial Class 开发人员的十种必备工具 ASP.NET中的状态管理 ASP.NET中编程杀死进程 关于SqlDataReader一些用法 使用附属程序集的一些经验 使用C#建立WINDOWS服务 . Net环境下消息队列(MSMQ)对象的应用
关于ASP.NET CS1595 问题
东哥技术专栏 - Coldwine's Blog · 2005-08-05 · via 博客园 - 东哥技术专栏 - Coldwine's Blog

Compiler Error CS1595

While changing namespaces and filenames at the request of Zorka, I encountered this error and was dumbfounded.

CS1595: ‘Rock.QL.LearningModuleSystem.Web.Global’ is defined in multiple places; using definition from ‘c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\(appname)\635cd671\892ee1b4\assembly\dl2\6a156ae1\9942572e_7e46c501\(appname).DLL’

I found no duplicate global class, and fortunately Lyle stopped by and gave me some good advice:

Wipe out any files under
c:\windows\micrososft.net\framework\v1.1.4322\Temporary ASP.NET\
c:\documents and settings\(username)\vswebcache
c:\(program dir)\bin

Worked like a charm after I wiped out all three.

Apparently the old binaries from the previous namespace hangout and are referenced by Visual Studio until you delete them. Therefore I would get a “duplicate global” error no matter how many times I verified I only had one global.asax file.