C#使用phantomjs采集页面HTML。 code.js phantom.outputEncoding="gb2312" system = require('system') address = system.args[1];//获得命令行第二个参数 接下来会用到 //console.log('Loading...
asp.net mvc生成验证码
asp.net mvc生成验证码: using System; using System.Drawing; using System.Drawing.Imaging; using System.Web.UI; using System.Drawing.Drawing2D; using System.IO; namespace Site.Common { /// ...
ASP.NET MVC自定义用户认证过滤器
ASP.NET MVC自定义用户认证过滤器: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Site.Filters { public enum AuthorizeS...
WinForm listBox 按住ctrl/shift 多选
WinForm listBox 按住ctrl/shift 多选,代码如下: listBox1.SelectionMode = SelectionMode.MultiExtended;
打印Qt版本号
打印Qt版本号 qDebug() << QT_VERSION_STR;
Qt5打印出所有可用的数据库驱动
Qt5打印出所有可用的数据库驱动 #include "mainwindow.h" #include <QApplication> #include <QtSql/QSqlDatabase> #include <QStringList> #include <QDebug> int main(int argc, ...
Ubuntu编译安装PHP5.6 报错:Cannot find OpenSSL’s
Ubuntu编译安装PHP5.6 报错:Cannot find OpenSSL's 解决办法: sudo apt-get install libcurl4-openssl-dev pkg-config apt-get install libssl-dev libsslcommon2-dev
安卓webview出现 android webview webpage not available
安卓webview出现 android webview webpage not available 解决办法: 加上 INTERNET 权限即可。
videojs播放视频报错:a network error caused the media download to fail part-way
在用VS调试网页时,用videojs播放视频有时出现:a network error caused the media download to fail part-way 解决办法:不要用VS自带的IIS Express,换成系统自带的IIS就行了。
Windows使用命令行开启允许sql server远程连接
Windows使用命令行开启允许sql server远程连接: EXEC sys.sp_configure N'remote access', N'1' GO RECONFIGURE WITH OVERRIDE GO
