摘要:
在看wcf广播事件的程序时候,运行到ILogService service = DuplexChannelFactory<ILogService>.CreateChannel(client, new WSDualHttpBinding(), new EndpointAddress("http://localhost:8567/server"));报出个异常HTTP 无法注册 URL http://+/Temporary_Listen_Addresses/144ff7cb-10a4-4836-b76a-1a516da4ebda/,因为另一应用程序正在使用 TCP 阅读全文
摘要:
做项目时候用wcf 返回图片,从官网上找了找一次只能返回一张图片,但是一直查不到返回多个图片的方法,ios 可以异步加载看速度也可以,先记录一下等以后用解决了再发http://msdn.microsoft.com/en-us/library/cc681221(v=vs.85).aspx [ServiceContract] public interface IImageServer { [OperationContract, WebGet] Stream GetImage(int width, int height); } public ... 阅读全文
摘要:
前几天写了一篇sqlserver 行转列,http://www.cnblogs.com/li-peng/archive/2012/02/01/2334973.html由于工作需要,要把查出来的DataTable实现 行转列,正好这一阵子在用Linq 就做了一个行转列的小例 子转换前的table:转换后的table:代码里有详细的说明,还有一些参数我都截图了下面有using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Text;namespace ConvertT 阅读全文
摘要:
常用的系统存储过程 sp_databases 列出服务上的所有数据库 sp_helpdb 报告有关指定数据库或所有数据库的信息 sp_renamedb 更改数据库的名称 sp_tables 返回当前环境下可查询的对象的列表 sp_columns 返回某个表列的信息 sp_help 返回某个表的所有信息 sp_helpconstraint 查看某个表的约束 sp_helpindex 查看某个表的索引 sp_stored_procedures 列出当前环境中的所有存储过程 sp_password 添加或修改登录账户的密码 sp_helptext 显示默认值,未加密的存储过程、用户定义的存储过程、触 阅读全文
摘要:
还写了一篇Linq 实现 DataTable 行转列有时间大家可以看一下sqlserver把行转成列在我们编码中是经常遇到的我做一个小例子大家看一下 1 --创建一个表 2 create table PayPhoneMoney 3 ( 4 id int identity(1,1), 5 userName Nvarchar(20), 6 payType nvarchar(20), 7 money decimal, 8 payTime datetime, 9 constraint pk_id primary key(id)10 )11 --插入点... 阅读全文
摘要:
sql的事务 1 sql 2 create database model 3 go 4 use model 5 go 6 create table Stu( 7 id int , 8 name varchar(200) 9 )10 go11 select * from Stu12 go13 begin transaction cc14 begin 15 --print @@Trancount16 insert into Stu (id,name) values(1,'33')17 insert into Stu (id,name) values('sd', 阅读全文
摘要:
这次是用递归的方法实现 ,我想大家都知道怎么做吧,就不 多说了,还是不建议用递归,数据量大了会映响速度,动态生成TreeView方法(一)是我比较喜欢的方法看一下效果图前台代码: 后台代码:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data;namespace W... 阅读全文
摘要:
一般情况下生成TreeView我们用的是用递归不建议用递归数据量大了会慢, 小弟今天用SortedList集合实现一下没有技术含量,一看代码大家就会明白。个人也比较喜欢这种方法,数据量大了执行速度也可以。 下一篇方法动态生成TreeView(二)是用递归实现的,有时间可以看一下。 思路: 把节点放到 阅读全文
摘要:
今天没有什么事做,就写了一个GridView行上下移动的小例子。 方法有好多种,我先写第一种。 没有什么技术含量 思路: 把要上移或下移的id 与它的临近行的id进行互换 效果: 前台页面: 后台代码: 阅读全文
摘要:
1.建一个类ArticleView Code 1 using System.Data.Linq.Mapping; 2 3 4 5 [Table(Name = "Article")] 6 public class Article 7 { 8 [Column(IsPrimaryKey=true)] 9 public int id10 {11 get;12 set;13 }14 [Column(Name = "containt")]15 ... 阅读全文