上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 47 下一页

Web Service 部署到IIS服务器

摘要: 转载自:http://blog.csdn.net/yexuanbaby/article/details/9029605 阅读全文
posted @ 2015-05-07 18:12 ultrastrong 阅读(217) 评论(0) 推荐(0)

PrintDocument组件打印

摘要: 运行效果:代码: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using Syste... 阅读全文
posted @ 2015-05-06 16:10 ultrastrong 阅读(429) 评论(0) 推荐(0)

Sql Server 循环添加日期--(累加到一个字段中)

摘要: SQL语句:update tb_CT set Currentgoodsstate = 'E', Goodsflow = '0000000', Goodsflownowtime = Goodsflownowtime + '-' + convert(varchar(25),getdate(),100) ... 阅读全文
posted @ 2015-05-04 20:40 ultrastrong 阅读(1219) 评论(0) 推荐(0)

Web Service 大数据量网络传输处理

摘要: 转载自:http://www.cnblogs.com/blueskybcl/archive/2010/06/03/1750421.html 阅读全文
posted @ 2015-05-04 14:12 ultrastrong 阅读(224) 评论(0) 推荐(0)

数据库连接字符串

摘要: 一:可以直接编写:无验证:string connectionString = "data source = (local); database = TEMP; integrated security = true";使用验证:Data Source = myServerAddress;Initial... 阅读全文
posted @ 2015-05-02 11:04 ultrastrong 阅读(322) 评论(0) 推荐(0)

C#文件上传和文件下载

摘要: 1 #region 文件上传 2 private void UpLoadFile(string fileName, string fileNamePath, string uriString) 3 { 4 string NewFileName = DateTi... 阅读全文
posted @ 2015-05-02 00:56 ultrastrong 阅读(622) 评论(0) 推荐(0)

C#-Winform-打印控件

摘要: 控件设计:设置上述出去Button和Form控件的剩余控件(PrintDialog1等)的Document属性为相应的PrintDocument。代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Compon... 阅读全文
posted @ 2015-05-02 00:37 ultrastrong 阅读(846) 评论(0) 推荐(0)

sql server日期时间格式转换成字符串格式

摘要: 转载自:http://www.cnblogs.com/zhangq723/archive/2011/02/16/1956152.html 阅读全文
posted @ 2015-04-30 20:35 ultrastrong 阅读(491) 评论(0) 推荐(0)

Web Service

摘要: 1.新建一个ASP.NET Web空网站。2.对项目右键-->添加-->添加新项,并选择Web服务。3.会自动生成代码,其中[WebMethod]标识下的就是可用的方法。23-25行代码,是自动生成的一个方法。我们同样可以按照这个规格,重新写一些方法。4.之后运行,会把这个方法部署到我们本地的IIS... 阅读全文
posted @ 2015-04-28 13:43 ultrastrong 阅读(253) 评论(0) 推荐(0)

C# 使用PictureBox控件--点击切换图片

摘要: 效果:1.2.代码: 1 private Boolean fals = true; 2 3 /// 4 /// 单击事件 5 /// 6 /// 7 /// 8 private ... 阅读全文
posted @ 2015-04-26 02:02 ultrastrong 阅读(8353) 评论(1) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 47 下一页