报错信息如下:Type not found: 'System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.Web.WebPages.Razor,Version... 经过咨询一些群友,最后Mr. Seaning提出是Webpages大小写的问题...
VC创建快捷方式
VC创建快捷方式 //得到当前桌面路径 BOOL GetDesktopPath(TCHAR * pszDesktopPath) { LPITEMIDLIST ppidl = NULL ; if (SHGetSpecialFolderLocation(NULL , CSIDL_DESKT...
VC 获取软件安装列表
VC 获取软件安装列表 #include <comdef.h> #include <wbemidl.h> #pragma comment ( lib, "wbemuuid.lib") #include <string> using namespace std; void CdeltoolDlg ::GetSoftwareLi...
ANSI和UNICODE互转,微软提供,无BUG
ANSI和UNICODE互转,微软提供,无BUG。 来源:https://support.microsoft.com/en-us/kb/138813 /* * AnsiToUnicode converts the ANSI string pszA to a Unicode string * and returns the Unicode string...
Windows批处理查找并结束进程
Windows批处理查找并结束进程,查找进程名中包含Note的进程,并结束掉它 wmic Path win32_process Where "CommandLine Like '%%Note%%'" Call Terminate pause
PHP把\n换行符转成<br>
PHP把\n换行符转成<br>: nl2br('abc\ndef'); // 输出abc<br/>def 函数名的意思是 new line to br。
C++ STL 去掉字符串中指定的字符
C++ STL 去掉字符串中指定的字符 。 bind2nd 函数要用到头文件functional #include <functional> string response = "aaa\r\nbbb\r\n"; string::iterator new_end = remove_if(response.begin(), r...
VC结束进程
VC结束第三方应用的进程: BOOL GetDebugPriv() { HANDLE hToken; LUID sedebugnameValue; TOKEN_PRIVILEGES tkp; if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGE...
编译Libgdiplus遇到的问题
https://github.com/mono/libgdiplus/releases 下载最新版本解压并执行 ./autogen.sh,在执行此步时遇到如下问题,并帖出解决办法 问题:执行 ./autogen.sh时报错 Error: You must have `autoconf' inst...
Supervisor 安装 配置 及 使用
supervisor是微软官方推荐的一个工具,传送门, 所以我们也使用这个工具来管理我们的asp.net core应用进程 服务器环境:ubuntu14.04 x64安装 apt-get install supervisor配置文件目录: /etc/supervisor...
