会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
和谐
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2018年1月18日
VirtualBox 局域网独立主机设置
摘要: 网络地址转换(NAT)网卡用于分配虚拟机内网地址 桥接网卡用于分配母机内网地址 母机设置-网卡指定IP地址 常见坑有两个 坑1:记得把虚拟机防火墙关闭 坑2:虚拟机不可以ping主机,但母机可以ping虚拟机。
阅读全文
posted @ 2018-01-18 16:04 懒人境界
阅读(160)
评论(0)
推荐(0)
2018年1月6日
如何用.reg文件操作注册表
摘要: Windows Registry Editor Version 5.00 ;删除值 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] "MaxUserPort"=- ;添加值 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Pa...
阅读全文
posted @ 2018-01-06 13:17 懒人境界
阅读(392)
评论(0)
推荐(0)
2017年7月14日
开源协议瞎扯淡,什么是 MIT 协议?[转]
摘要: 图片来源:http://ruby-china.org/topics/15979
阅读全文
posted @ 2017-07-14 16:26 懒人境界
阅读(544)
评论(0)
推荐(0)
2017年6月30日
jquery ajax 发送邮件例子
摘要: Email.ashx
阅读全文
posted @ 2017-06-30 17:59 懒人境界
阅读(4934)
评论(0)
推荐(0)
C# 打开文件夹和保存文件夹
摘要: OpenFileDialog sfd = new OpenFileDialog(); sfd.ShowDialog(); this.textBox1.Text = sfd.FileName; SaveFileDialog sfd = new SaveFileDialog(); ...
阅读全文
posted @ 2017-06-30 16:43 懒人境界
阅读(968)
评论(0)
推荐(0)
C# QQ邮箱授权码发送邮件
摘要: using System.Net;using System.Web.Mail;
阅读全文
posted @ 2017-06-30 16:39 懒人境界
阅读(478)
评论(0)
推荐(0)
2017年6月20日
IIS7 http自动跳转到https
摘要: 1.下载安装URL重写模块:Microsoft URL Rewrite Module 32位:http://download.microsoft.com/download/4/9/C/49CD28DB-4AA6-4A51-9437-AA001221F606/rewrite_x86_zh-CN.msi
阅读全文
posted @ 2017-06-20 16:38 懒人境界
阅读(14493)
评论(1)
推荐(0)
2017年6月12日
C# 关键字替换
摘要: /// /// 关键字替换 /// /// /// public string TagReplace(string body) { string[] begin = this.txtTagBegin.Text.Split('|'); ...
阅读全文
posted @ 2017-06-12 10:00 懒人境界
阅读(4375)
评论(0)
推荐(0)
C# webBrowser 控件赋值
摘要: string body = PostWebRequest(txtURL.Text, textBox2.Text); if (webBrowser1.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); ...
阅读全文
posted @ 2017-06-12 09:58 懒人境界
阅读(1239)
评论(0)
推荐(0)
C# Post提交数据
摘要: /// /// Post提交数据 /// /// URL /// 参数 /// private string PostWebRequest(string postUrl, string paramData) { string ret = s...
阅读全文
posted @ 2017-06-12 09:57 懒人境界
阅读(11744)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告