摘要: 一 使用工具Ildasm.exe:将dll 、 exe编译为IL文件 (Ildasm.exe默认在C:\Program Files\Microsoft Visual Studio 10\SDK\v4.0\Bin )ilasm.exe:将IL文件编译回dll或exe (C:\WINDOWS\Microsoft.NET\Framework\v4.0.391205)UltraEdit/NotePad++ : 文本处理工具Reflector.exe/ILSpy : 反编译工具二 步骤1、采用 Reflector.exe/ILSpy 打开需要破解的Dll ;分析并找到 需要调整的程序段2、采用Ildas 阅读全文
posted @ 2011-09-16 14:10 小伟地方 阅读(22855) 评论(0) 推荐(0) 编辑
摘要: #NoTrayIcon^Q::d = (用户名@%A_YYYY%-%A_MM%-%A_DD% %A_Hour%:%A_Min%:%A_Sec%);获得系统时间比如今天的时间:2011-09-16。如果需要“年”的话请替换上面的“-”。clipboard = %d%;把 d 的值发送到剪贴板,变量是不用声明的,想引用变量的值,就在变量的前后加“%”。第二行的变量是 AHK 自带的变量。Send ^vreturn将以上脚本保存为扩展名.ahk文件,Compile Script成.exe文件运行然后按“Ctrl+Q”就能得到“(用户名@2011-09-16 14:12:25)”。 阅读全文
posted @ 2011-09-16 14:07 小伟地方 阅读(3512) 评论(0) 推荐(2) 编辑
摘要: <body><Div id="DivLocker"></Div>其他html元素....<script language="text/javascript"> $('#DivLocker').css({ "position": "absolute", "margin-left": "1px", "margin-top": "1px", "background-co 阅读全文
posted @ 2011-09-16 14:03 小伟地方 阅读(13673) 评论(0) 推荐(0) 编辑
摘要: --方法一 declare SailsReport_cursor cursor for select ets.OrderId,et.FillOrder_Time from ET_Order et inner join ET_Order_SailsReport ets on et.pkid=ets.OrderID declare @OrderId int, @FillOrder_Time datetime open SailsReport_cursor fetch next from SailsReport_cursor ... 阅读全文
posted @ 2011-09-06 22:38 小伟地方 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 将以下代码保存到文本文件中,命名为niu.txt,放在c盘根目录,然后在dos下运行: debug>niu.txte100 33 f6 bf 0 20 b5 10 f3 a5 8c c8 5 0 2 50 68 13 1 cb e 1f be a1 1 bf 0 1 e11b 6 57 b8 11 1 bb 21 13 89 7 4b 4b 48 79 f9 ad 86 e0 8b c8 bd ff ff e8 20 e134 0 3d 0 1 74 1a 7f 3 aa eb f3 2d ff 0 50 e8 f 0 5a f7 d8 8b d8 26 8a 1 aa e14f 4a 阅读全文
posted @ 2011-09-06 22:36 小伟地方 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 引入的命名空间有:using System.IO;using System.Net;using System .Text; Post方法: ASCIIEncoding encoding=new ASCIIEncoding(); string postData="username=test"; postData += ("&password=111");byte[] data = encoding.GetBytes(postData);HttpWe... 阅读全文
posted @ 2011-09-06 22:33 小伟地方 阅读(15871) 评论(0) 推荐(1) 编辑
摘要: private bool send(string to,string body) { // using System.Net.Mail; MailMessage message = new MailMessage(); message.From = new MailAddress(test@test.com, "Test Error Sender"); message.To.Add(new MailAddress(to)); // the email you want to send email to ... 阅读全文
posted @ 2011-09-06 22:22 小伟地方 阅读(169) 评论(0) 推荐(0) 编辑
摘要: http://u.163.com/oofEM提取码:3otw7ct6 阅读全文
posted @ 2011-09-06 22:18 小伟地方 阅读(153) 评论(0) 推荐(0) 编辑
摘要: //点击事件失效<div onclick="event.cancelBubble = true;">></div>//拖动 $(function () { var bool = false; var offsetX = 0; var offsetY = 0; $("#topDivContent").mousedown(function () { bool = true; offsetX = event.offsetX; ... 阅读全文
posted @ 2011-09-06 22:07 小伟地方 阅读(4531) 评论(0) 推荐(0) 编辑
摘要: <div id="topDivBG" style="display: none; position: absolute; z-index: 1; background: url(../image/transparent.png); width: 100%; height: 100px; top: 0; left: 0;" onclick="hiddenTopDiv();return false;"> <div id="topDivContent" style="font-size: 14 阅读全文
posted @ 2011-09-06 22:05 小伟地方 阅读(1817) 评论(0) 推荐(0) 编辑