06 2009 档案

--调用其它各服务器上的函数--层的分布式
摘要:调用其它各服务器上的函数是不是只能通过webService,有没有其它的方法?再就是三层架框,逻辑层,数据层如何分配到其它服务器上,这样的话程序中如何实现层之间调用呢?--------webService基本上可以被wcf淘汰了。wcf虽然也可以基于remoting(的通讯协议)来建立,但是wcf实现的比较简单,所以在自己专用的局域网上的多个服务器通讯使用remoting也还是有一些功能优势。后边... 阅读全文

posted @ 2009-06-19 13:02 simhare 阅读(295) 评论(0) 推荐(0)

--js网页计时
摘要:<script language="javascript">function Year_Month(){var now = new Date();var yy = now.getYear();var mm = now.getMonth()+1;var cl = '<font color="black">';if (now.getDay() == 0) cl = '<f... 阅读全文

posted @ 2009-06-10 08:51 simhare 阅读(378) 评论(0) 推荐(0)

--.net 性能调优
摘要:http://www.javaeye.com/news/3022-recommendation-25-to-help-you-net-application-performance-tuning-resources============推荐25个帮助你的.NET应用性能调优的资源,如果你还知道其他的资源请在下面留言。 1.Improving .NET Application Performanc... 阅读全文

posted @ 2009-06-04 16:04 simhare 阅读(246) 评论(0) 推荐(0)

--Enterprise Library 02
摘要:1.Data Access Application Block该Application Block允许开发人员在应用程序中采用标准的数据访问功能。***Enterprise Library: Data Access Application Block使用向导,Part 1 Enterprise Library: Data Access Application Block使用向导,Part 2 En... 阅读全文

posted @ 2009-06-04 15:59 simhare 阅读(123) 评论(0) 推荐(0)

--学习Enterprise Library 01
摘要:http://www.cnblogs.com/rickie/archive/2005/01/30/99443.html====1.安装和卸载1.1 卸载Enterprise Library Beta版本在你安装Enterprise Library正式版本之前,你必须卸载先前安装的Beta版本。Enterprise Library Beta版本包含将Enterprise Library assemb... 阅读全文

posted @ 2009-06-04 15:55 simhare 阅读(182) 评论(0) 推荐(0)

C# 链表
摘要:用C#实现链表的一些功能public class Node<T>{ public T data; public Node() { } public Node(T data) { this.data = data; } public Node<T> next = null; } public class Link<T> { //定义链表的头节点 private N... 阅读全文

posted @ 2009-06-04 15:43 simhare 阅读(500) 评论(0) 推荐(0)

--Gmail的POP3和SMTP设置
摘要:--Gmail的POP3和SMTP设置 阅读全文

posted @ 2009-06-04 12:04 simhare 阅读(331) 评论(0) 推荐(0)

--.net 面试题2
摘要:--.net 面试题2 阅读全文

posted @ 2009-06-03 10:49 simhare 阅读(356) 评论(0) 推荐(0)

--.net array
摘要:一、一维:int[] numbers = new int[]{1,2,3,4,5,6}; //不定长 int[] numbers = new int[3]{1,2,3};//定长 二、多维 int[,] numbers = new int[,]{{1,2,3},{1,2,3}}; //不定长 int[,] numbers = new int[2,2]{{1,2},{1,2}}; //定长 三、例子... 阅读全文

posted @ 2009-06-03 10:16 simhare 阅读(154) 评论(0) 推荐(0)

--.net 面试题
摘要:3. 接口是否可以继承接口?抽象类是否可以实现接口?抽象类是否可以继承实体类?   答:接口是可以继承接口的,抽象类是可以实现接口的,抽象类可以继承实体类, 但是有个条件,条件是,实体类必须要有明确的构造函数。4. 构造器Constructor是否可以被继承?是否可以被Override?  答:Constructor不可以被继承,因此不能被重写(Overriding),但可以被重载(Overloa... 阅读全文

posted @ 2009-06-03 10:16 simhare 阅读(186) 评论(0) 推荐(0)

导航

点击右上角即可分享
微信分享提示