
C# winform
alive_roy
这个作者很懒,什么都没留下…
展开
-
c# webservice 的基本操作
1)用VS2008创建空白解决方案“WebServiceProject”。 2)在空白解决方案“WebServiceProject”中添加ASP.NET Web服务器应用程序“WebServices”。 3)在ASP.NET Web服务器应用程序“WebServices”中添加Web服务“StudentWebService.asmx”。 4)在ASP.NET Web服务器应用程序转载 2013-08-02 11:12:45 · 211 阅读 · 0 评论 -
c# winform 生成验证码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace abcValidator { public转载 2013-08-02 11:17:56 · 226 阅读 · 0 评论 -
c# winform通过webservice 上传文件
1)winform 窗体using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namesp转载 2013-08-02 11:06:42 · 217 阅读 · 0 评论 -
获得汉字拼音的首字母
public string GetPYChar(string c) { byte[] array = new byte[2]; array = System.Text.Encoding.Default.GetBytes(c); int i = (short)(array[0] - '\0') * 256转载 2013-09-18 08:24:37 · 173 阅读 · 0 评论