情况:部署程序在IIS 7.5 windows server 2008 R2 64 bit OS,引用“Oracle.DataAccess.dll”运行程序会出现:"Could not load file or assembly 'Oracle.DataAccess' or one of its d...
分类:
数据库 时间:
2014-07-16 23:21:27
阅读次数:
638
原理如下:1、利用反射进行动态加载和调用.Assembly ass=Assembly.LoadFrom(DllPath); //利用dll的路径加载,同时将此程序集所依赖的程序集加载进来,需后辍名.dllAssembly.LoadFile 只加载指定文件,并不会自动加载依赖程序集.Assmbly.L...
分类:
Web程序 时间:
2014-07-16 23:14:59
阅读次数:
206
什么是程序集?---程序集是.net中的概念。---.net中的dll与exe文件都是程序集。(exe与dll的区别?)---程序集(Assembly)。可以看做是一堆相关类打一个包,相当于Java中的jar包(*)。使用程序集的好处?--程序中只引用必须的程序集,减少程序的尺寸。---程序集可以疯...
分类:
其他好文 时间:
2014-07-07 23:27:18
阅读次数:
214
比如有这样一个泛型:Demo.GenericsSimple我想要通过反射创建一个Demo.GenericsSimple的实例可以通过下面的格式进行创建:System.Reflection.Assembly.GetExecutingAssembly().CreateInstance("命名空间.Use...
分类:
其他好文 时间:
2014-06-27 22:21:47
阅读次数:
275
$title=“title”$message="hello,world"[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")$balloon = New-Object System.Windo...
分类:
其他好文 时间:
2014-06-27 12:54:43
阅读次数:
216
A simple solution that I use is to merely stop the service and x-copy the files from my bin folder into the service folder.A batch file to stop the se...
1. 添加References PresentationCore PresentationFramework System.Xaml WindowsBase2. 修改AssemblyInfo.xsusing System.Windows;[assembly: System.Windows...
分类:
其他好文 时间:
2014-06-26 19:09:55
阅读次数:
139
editor:notepad++sublime textmodelling:starumlscreen capture:setuna2jingcode coverage:opencoverdecompile .net assembly:ilspycommand prompt:conemutools ...
分类:
其他好文 时间:
2014-06-26 16:44:32
阅读次数:
146
在本机开发asp.net .rdlc报表后,部署到本地没有问题。当把网站发布后部署在IIS上,新电脑上(只安装了.net framwork4.5),提示如下错误:“Could not load file or assembly Microsoft.ReportViewer.WebForms, Ver...
分类:
其他好文 时间:
2014-06-25 19:11:41
阅读次数:
368
原文:使用JustDecompile修改程序集 JustDecompile是Telerik公司推出一个免费的.net反编译工具,支持插件,与Visual Studio 2010,2012集成,能够创建Visual Studio project文件。今天我们使用其一个插件Assembly Editor...
分类:
其他好文 时间:
2014-06-24 11:49:04
阅读次数:
400