上一页 1 ··· 32 33 34 35 36

2008年4月9日

关于Windows Workflow Foundation 调试时的经验小解(不断添加)

摘要: 1.如果程序使用了SqlWorkflowPersist Serivice,那么在对工作流代码进行修改之后,要删除之前在SQL数据库中保存的工作流实例对象状态,否则,旧的状态数据无法反序列化为新的工作流设计。 阅读全文

posted @ 2008-04-09 17:00 smwikipedia 阅读(157) 评论(0) 推荐(0) 编辑

2008年4月7日

MVC模式 介绍

摘要: http://www.itisedu.com/phrase/200604231324325.html MVC模式是"Model-View-Controller"的缩写,中文翻译为"模式-视图-控制器"。MVC应用程序总是由这三个部分组成。Event(事件)导致Controller改变Model或View,或者同时改变两者。只要Controller改变了Models的数据或者属性,所有依赖的Vi... 阅读全文

posted @ 2008-04-07 01:07 smwikipedia 阅读(321) 评论(0) 推荐(0) 编辑

2008年4月1日

HttpContext.Current.Response和Response有什么区别?

摘要: 为什么我在一个程序中使用Response.Redirect无法跳转,但是用HttpContext.Current.Response.Redirect就可以了呢?? 哪位同学遇到过类似问题,谢谢回答。 阅读全文

posted @ 2008-04-01 16:49 smwikipedia 阅读(566) 评论(1) 推荐(0) 编辑

2008年3月29日

Ramdisk -内存盘的使用

摘要: 转载自:http://www.hndm.net/blog/user/yd21/archives/2006/45.html 阅读全文

posted @ 2008-03-29 02:52 smwikipedia 阅读(2060) 评论(1) 推荐(0) 编辑

2008年3月28日

代码目录 (App_Code 目录)及namespace的理解

摘要: 转载自:http://www.kekecn.com/blog/article.asp?id=782 个人对App_Code的理解: 建立全站的通用类,打开网站时即时编译App_Code文件夹下面的.cs文件。 在App_Code文件夹下面的.cs文件中的类,在每个文件里都可以调用。。 个人对namespace的理解: 比如:在App_Code/a.cs中有namespace testA 在 网站... 阅读全文

posted @ 2008-03-28 18:13 smwikipedia 阅读(939) 评论(0) 推荐(0) 编辑

Events解惑——来自MSDN

摘要: Events are a special kind of multicast delegate that can only be invoked from within the class or struct where they are declared (the publisher class). If other classes or structs subscribe to the eve... 阅读全文

posted @ 2008-03-28 17:27 smwikipedia 阅读(314) 评论(0) 推荐(0) 编辑

2008年3月27日

关于类成员变量的声明和实例化的时机

摘要: 看如下程序: 程序1: namespace ClassMemberDeclaration { class Class1 { Class2 class2 = new Class2(); //这是在声明成员对象的时候同时实例化。 public Class1() { //class2 = new Cl... 阅读全文

posted @ 2008-03-27 16:30 smwikipedia 阅读(874) 评论(0) 推荐(0) 编辑

上一页 1 ··· 32 33 34 35 36

导航