Problem: Assembly generation failed -- Referenced assembly '' does not have a strong name Cause: this is due to you have referenced a third-party dll which doesn't have a strong name. Solution: 1. open Developer Command Prompt for Visual Studio cmd a…
HTML5 Input type: Traditionally presentational tags, the i, b, em, and strong tags have been given new semantic meanings: The i tag represents text in an "alternate voice" or "mood"; The b tag represents "stylistically offset"…
AdminLTE 一个基于 bootstrap 的轻量级后台模板,这个前端界面个人感觉很清爽,对于一个大后端的我来说,可以减少较多的时间去承担前端的工作但又必须去独立去完成一个后台系统开发的任务,并且,文档还算比较齐全,对着demo可以完成一个基本的前端框架搭建了.大家如有更为好看的又方便后端上手的前端框架,也可以在留言区分享一下呗. AdminLTE 文档 在线中文Demo:http://adminlte.la998.com/ 在线中文文档:http://adminlte.la998.com/…
C# -- HttpWebRequest 和 HttpWebResponse 的使用 C# -- HttpWebRequest 和 HttpWebResponse 的使用 结合使用HttpWebRequest 和 HttpWebResponse,来判断一个网页地址是否可以正常访问. 1.举例 class Program { static void Main(string[] args) { string strUrl = "https://www.baidu.com"; HttpWeb…
1. 创建一个 C# Class Library ,命名为:ClassLibraryDemo 2. 打开项目的属性,在点选左边的 “Application”(就是第一个tab) , 然后点击 Assembly Information 按钮 ,在弹出的Dialog中, 必须在底部勾上: Make assembly COM-visible !否则 , 这个dll将不能以COM方式访问 .(  也可以在代码中的类声明中写上[ComVisible(true)] , 效果一样,需要增加using Syst…
近日一个java的项目,客户要求项目中必须使用其提供的加密机制,扔给了两个.net写的DLL.网络上搜了一圈也没找到啥东西,甚至看到人扬言此事绝无可能.郁闷当中考虑了一个思路.用C#做一个Com,调用客户提供的DLL实现加密解密的方法,然后提供给java使用.经过一番捣腾,最后证实可行.   环境与工具:   1..net framework 3.5 C#   2.java jdk1.5, Tomcat 5.5   3.jacob-1.15-M3   实现例子:   一.C# 制作Com组件  …
1. Verify if a dll has been signed sn.exe -v module.dll Scenario: sometimes for security reasons, a .Net program requires all loaded dlls having a strong name(a.k.a signed), otherwise the dll will not be loaded How to find sn.exe Open a cmd prompt >C…
Sign In Join Search IIS Home Downloads Learn Reference Solutions Blogs Forums HomeIIS.NET Forums64-bit Editions of IISIIS in SySWoW ModeThe Module DLL C:\Windows\system32\RpcProxy\RpcProxy.dll failed to lo... The Module DLL C:\Windows\system32\RpcPro…
最近在排查一个奇怪的 EF Core 查询速度慢的问题,需要在 corefx 2.2.3 的 System.Data.SqlClient 源码中打点. github 上签出 corefx 的源代码,运行 build.cmd 命令,然后用 VS2017 打开 System.Data.SqlClient.sln ,添加 Console.WriteLine 打点代码,用 VS 进行 build . build 之后 corefx 根路径下 bin\Windows_NT.AnyCPU.Debug\Sys…
使用命令行工具SDK Command Prompt,键入:SN -T C:\*****.dll 就会显示出该dll具体的PublicKeyToken 数值. 如果该程序集没有强命名,则不会有PublicKeyToken 数值. 将一个程序集强命名的方法是: 用SN -k C:\***.snk命令生成***.snk文件,将该snk文件加载到项目中.在项目上右键属性,选择Signing选项卡,钩选中"Sign the assembly",再在下拉列表中选择刚才生成的***.snk,重新编译…