随笔分类 -  .net

.net
摘要:XML Encryption in .Net One of the new features being introduced with the Whidbey version of the .Net framework is XML encryption. XML Encryption allows you to encrypt arbitrary data, and have the res... 阅读全文
posted @ 2008-08-06 09:34 阿新 阅读(465) 评论(1) 推荐(0) 编辑
摘要:C:\>makecert -r -pe -n "CN=x509Signature" -b 01/01/2005 -e 01/01/2010 -sky excha nge -ss my -sr localmachine 阅读全文
posted @ 2008-08-05 17:21 阿新 阅读(358) 评论(0) 推荐(0) 编辑
摘要:今天看到WCF,说是整合了Net remoting,Web service。。。下面列一下概念。 一 WCF 概括地说,WCF具有如下的优势: 1、统一性 前面已经叙述,WCF是对于ASMX,.Net Remoting,Enterprise Service,WSE,MSMQ等技术的整合。由于WCF完全是由托管代码编写,因此开发WCF的应用程序与开发其它的.Net应用程序没有太大的... 阅读全文
posted @ 2008-07-12 13:51 阿新 阅读(1701) 评论(1) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Text; using System.ComponentModel; using System.Security; using System.Security.Principal; using System.Runtime; using System.Runtime.Inter... 阅读全文
posted @ 2008-05-22 16:19 阿新 阅读(1032) 评论(1) 推荐(0) 编辑
摘要:项目前期需求收集过程的效果好坏,会对软件产品的最终质量产生直接的影响。如何收集好需求,本文作者给出了一条行之有效的实际操作途径。 什么是需求收集? 需求收集,是确定和理解不同类别用户的需要和限制的过程,是需要高度协作的活动,是在问题及其最终解决方案之间架设桥梁的第一步,因此其重要性不言而喻。据调查显示50%以上产品在市场上失败的原因,是由于忽视了用户需求。 ... 阅读全文
posted @ 2008-03-12 23:44 阿新 阅读(7071) 评论(0) 推荐(3) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1class XmlSchemaTraverseExample 2{ 3 static void Main() 4 { 5 // Add the custom... 阅读全文
posted @ 2008-02-03 16:42 阿新 阅读(364) 评论(0) 推荐(0) 编辑
摘要:NHibernate实践与模式 NHibernate是一款非常优秀的O/R mapping的开源框架,再还没有.net的时候它已经存在于java环境中。 下面我们先看一下它的框架 工作原理 将数据库表结构映射成实体类(xml-mapping文件,实体类 ,class文件),支持一对多,多对一,多对多的关系,默认生成对这些表的CURD操作,包括多表脊联操作(select,insert... 阅读全文
posted @ 2007-12-26 11:45 阿新 阅读(586) 评论(0) 推荐(0) 编辑
摘要:下面是主类文件 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->namespace EasyTalk.Module { /**//// /// SiteAddress object for NHibernate mapped... 阅读全文
posted @ 2007-12-20 11:03 阿新 阅读(476) 评论(0) 推荐(0) 编辑
摘要:The XmlSerializerFactory is a new class in .NET 2.0 that provides a factory pattern over the XmlSerializer. It maintains the cache of generated assemblies so that you can avoid the XmlSerializer leak... 阅读全文
posted @ 2007-11-29 18:33 阿新 阅读(415) 评论(0) 推荐(0) 编辑
摘要:The XmlSerializerFactory is a new class in .NET 2.0 that provides a factory pattern over the XmlSerializer. It maintains the cache of generated assemblies so that you can avoid the XmlSerializer leak... 阅读全文
posted @ 2007-11-29 15:42 阿新 阅读(632) 评论(0) 推荐(0) 编辑
摘要:在vs.net 2003中打开[Tools]-[macros]-[macros explorer]然后将下面的代码copy-paste 进去代开你要转换的cs文件,在mymacros form中单击dubug就可以了 1Imports EnvDTE 2Imports System.Globalization 3Imports System.Text.RegularExpressions 4Imp... 阅读全文
posted @ 2007-01-30 11:36 阿新 阅读(1583) 评论(1) 推荐(0) 编辑
摘要:在.net framework 2.0有一个SetCursorPosition (int left,int top)可以实现可是在framework 1.1中没有,请问我要如何实现呢实现的效果很简单,比如在一行上输出“当前进度 0%-100%”的变化量 阅读全文
posted @ 2006-12-05 10:47 阿新 阅读(332) 评论(0) 推荐(0) 编辑
摘要:.NET FX 3.0 July CTP... While I am here, might as well share a headache from last week... The .NET FX 3.0 July CTP shipped with out "cider" (aka VS Extensions for Orcas)... why would MS do that ? P... 阅读全文
posted @ 2006-08-06 00:19 阿新 阅读(456) 评论(0) 推荐(0) 编辑
摘要:需求 目前我们公司开发的系统大部分都涉及到数据传输,简单的系统架构如下,有企业输入单证信息,提交到政府机关进行审批,将审批的结果返回到企业端,由于企业客户端系统,和行政审批中心的系统存在多不多的复杂关系;同时又存在大量的数据报文的交换;为了提高整个系统在数据传输过程中的可靠性,安全性及时性。。。。我们在中间架设一台Biztalk Server 目前版本2004。目的作传输报文的加... 阅读全文
posted @ 2006-06-24 21:21 阿新 阅读(951) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/Files/neozhu/ColumnsSytle.rar共享给大家 阅读全文
posted @ 2006-05-31 15:05 阿新 阅读(461) 评论(0) 推荐(0) 编辑
摘要:我们都知道简单的运用多线程的方法有1/ Thread thread=new Thread(new StartThread(this.method)) thread.start();2/ define delegate public delegate void MethodDelegate(); instance delegate MethodDelegate md=new... 阅读全文
posted @ 2006-04-07 11:56 阿新 阅读(3263) 评论(3) 推荐(0) 编辑
摘要:功能模块只有 1/文件目录-〉文件目录 2/文件目录-〉MSMQ 3/MSMQ-〉MSMQ 4/MSMQ -〉文件目录在传输MSMQ是文件不能超过4M下载文件如下http://www.cnblogs.com/Files/neozhu/Pipeline.rarhttp://www.cnblogs.com/Files/neozhu/Pipeline.rar目前还是测试中,对于一些数据输入并没有作验证,... 阅读全文
posted @ 2006-01-26 16:13 阿新 阅读(888) 评论(1) 推荐(0) 编辑
摘要:1.net下模拟不同身份登陆以获取不同权限 2 3作者:佚名 时间:2004-04-16 09:14 出处:互连网 责编:chinaitpower 4 5 摘要:.net下模拟不同身份登陆以获取不同权限 6 7 8不管是asp.net、web service还是window service,程序运行的时候只有本地计算机的部分权限,有... 阅读全文
posted @ 2005-11-15 20:57 阿新 阅读(2101) 评论(0) 推荐(0) 编辑
摘要:目前我使用.net环境,没有办法实现接收远程主机上的私有队列中的消息;请问大家又做过这方面的开发吗! 阅读全文
posted @ 2005-10-01 20:47 阿新 阅读(1022) 评论(0) 推荐(0) 编辑
摘要:string d1="2005-10-1 12:12:12"; DateTime dt1=DateTime.Parse(d1); string d2="20051001121212"; DateTime dt2=DateTime.ParseExact(d2,"yyyyMMddHHmmss",System.Globalization.DateTimeFormatInfo.Curre... 阅读全文
posted @ 2005-09-16 21:32 阿新 阅读(1245) 评论(0) 推荐(0) 编辑

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