C#

Simple is the best

最近比特币很火的样子,写个程序快速炒个短线~ 界面如下: 工作炒币两不误,任务栏提醒看看~ 交易记录看看

发布 0 条评论

近几天研究了有关验证码识别的一些问题,后来先选取了校内比较简单的验证码来开刀了。。。 以下是最终成果图: 用c#编写的,其实这个验证码十分简单,只用分割好了即可完成识别工作,由于不等间距,所以分割时得加些参数在里面。最...

发布 6 条评论

最近研究了ASP.NET,发现一个问题,比方说在页面里面有个Button,要点击以后要打开新窗口,而且新窗口的URL是根据用户选择结果动态产生的。LinkButton的代码这样写: protected void ServiceManHistoryButton_Click(object sender, Eve...

发布 0 条评论

最近在做软件登陆校内网的软件,今天突然不好用了,可能校内改版了,让我的软件出现了错误: 服务器提交了协议冲突.Section=ResponseHeader Detail=CR 后面必须是LF 这个错误貌似是微软没有容忍不符合RFC 822中的httpHeader必须以CRLF...

发布 0 条评论

最近研究了ASP.NET,发现一个问题,比方说在页面里面有个Button,要点击以后要打开新窗口,而且新窗口的URL是根据用户选择结果动态产生的。LinkButton的代码这样写: protected void ServiceManHistoryButton_Click(object sender, Eve...

发布 0 条评论

1、合并file1.dll、file2.dll到destination.dll ILmerge /ndebug /target:dll /out:C:\destination.dll /log C:\file1.dll C:\file2.dll 2、合并file1.dll、file2.dll以及myApp.exe到newApp.exe ILmerge /ndebug /target:winexe /out:...

发布 0 条评论

自己写的哦~所以共享出来了~ using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; using System.Globalization; using System.IO; namespace what {     class DES    {     ...

发布 0 条评论

由于要做一个地图学的作业,老师要求得写个分析程序,就草略的写了点~哈,效果还不错,就是饼图粗糙了点~下面就是截图:   EXCEL导入DATASET的代码我就写在下面吧,可以帮助一下新手~ public void ExcelToDS(string Path)     ...

发布 0 条评论

private void BindData()         {             GridView1.Visible = true;             try             {                  conn.Open();                 if (conn.State == ConnectionState.Open)                 {            ...

发布 0 条评论

在Program.cs中添加如下代码: Boolean createdNew; //返回是否赋予了使用线程的互斥体初始所属权             System.Threading.Mutex instance = new System.Threading.Mut...

发布 0 条评论