2019年9月18日

Android adb.exe 开发模试安装

摘要: 1.安装 adb . 让它直接能在cmd 窗口运行 下载:platform-tools 这个就行: Download SDK Platform-Tools for Windows 下载完成后直接解压到你的电脑硬盘里,我解压在: C:\platform-tools_r29.0.4-windows\pl 阅读全文

posted @ 2019-09-18 13:46 newr2006 阅读(546) 评论(0) 推荐(0) 编辑

2018年6月22日

HttpWebRequest 模拟浏览器访问网站

摘要: 最近抓网页时报错: 要么返回 The remote server returned an error: (442)要么返回: 非法访问,您的行为已被WAF系统记录! 想了想,就当是人家加了抓网页的东西,于是改了一下方法 加上Request.Header 之类的东西就行了。 具体加什么,咱们可以先用 阅读全文

posted @ 2018-06-22 12:01 newr2006 阅读(3759) 评论(1) 推荐(0) 编辑

2015年2月8日

jquery check box

摘要: if ($("#eulaLine").is(':checked')) { var mobile = $("#mobile").val(); if (mobile.length < 2) { $("#... 阅读全文

posted @ 2015-02-08 20:02 newr2006 阅读(280) 评论(0) 推荐(0) 编辑

2014年5月20日

Fiddler Post Debug

摘要: 1. Post: http://localhost:11804/My/Commentfor plain html parameter submission, like the GET in URL:Request Header:User-Agent: FiddlerContent-Length: 3... 阅读全文

posted @ 2014-05-20 19:31 newr2006 阅读(1586) 评论(0) 推荐(0) 编辑

2012年3月20日

symbol MC 3090 upgrade to symbol MC 3190

摘要: 客户最近反应3090停产了,需要我们把以前在 symbol mc 3090上运行的程序升级到 3190 上来,开始以为是一个很简单的活,想不到越做越麻烦,原因是源程序N年前就没有了..没办法我只能走另一条路了.想了想需要做这些事情:1.wince 5.0 升级到 wince 6.02.sqlce 2.0 升级到 sqlce 3.53.symbol 一引起dll 的升级.4.源程序的升级.还好兄弟水平还可以,都给搞定了..这是经验:Reverse Compiling Windows Forms Today I had a fun task: the source code for an exi. 阅读全文

posted @ 2012-03-20 16:18 newr2006 阅读(530) 评论(0) 推荐(0) 编辑

2011年9月23日

ALTER TABLE

摘要: 向表中增加一个 varchar 列:ALTER TABLE distributors ADD COLUMN address varchar(30); 从表中删除一个字段:ALTER TABLE distributors DROP COLUMN address RESTRICT;在一个操作中修改两个现有字段的类型: ALTER TABLE distributors ALTER COLUMN address TYPE varchar(80), ALTER COLUMN name TYPE varchar(100);使用一个 USING 子句, 把一个包含 UNIX 时间戳的 inte... 阅读全文

posted @ 2011-09-23 13:50 newr2006 阅读(800) 评论(0) 推荐(0) 编辑

2011年9月19日

unable to add host to SCVMM 2008R2

摘要: SCVMM issure 阅读全文

posted @ 2011-09-19 19:11 newr2006 阅读(525) 评论(0) 推荐(0) 编辑

2011年8月25日

Cannot generate SSPI context

摘要: Cannot generate SSPI context 阅读全文

posted @ 2011-08-25 14:25 newr2006 阅读(1322) 评论(0) 推荐(0) 编辑

2009年12月7日

ASP.NET代码对页面输出进行清理

摘要: 好的代码,自然要保存:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatestaticreadonlyRegexREGEX_LINE_BREAKS=newRegex(@"\n\s*",RegexOptions.Compiled);priv... 阅读全文

posted @ 2009-12-07 11:19 newr2006 阅读(239) 评论(0) 推荐(0) 编辑

2009年5月4日

提前两天发邮件

摘要: 提前两天发邮件,public static void SendMail(object sender, ElapsedEventArgs e) { foreach (KeyValuePair<string, System.Timers.Timer> keyValuePair in Globals.TimerLists) { if (keyValuePair.Value == sende... 阅读全文

posted @ 2009-05-04 14:12 newr2006 阅读(267) 评论(0) 推荐(0) 编辑

导航