摘要:
详细介绍了TempData的load与save的全过程。 阅读全文
摘要:
这一系列文章是对asp.net mvc 1.0深入学习的学习笔记,更是一个总结,做为一个阶段的结束,也标志着另一阶段的开始。 阅读全文
摘要:
解决Crystal Report XI R2不能在64操作系统正常工作的问题 阅读全文
摘要:
如何在ADO.NET Entity中设置类之间的继承关系 阅读全文
摘要:
2009年发生我人生的两年大事:结婚,买房结婚,买房 娶了可爱美丽的老婆,身上多了一份责任,这不仅是责任更是动力; 至于买房,更增加我的压力,一直生活在无压下的我显然对这突如其来的压力没有任何心理准备,虽然是负资产,但它也是我们的窝,一个幸福的窝 n_n工作 我是.NET程序员,我喜欢这个职业,即将奔三的我也有了一些恐惧,多半是来自年龄的原因,但不会因为这一点恐惧放弃我的理想。09年做了规划,20... 阅读全文
摘要:
class Cat { public int Year { get; private set; } public string Name { get; private set; } public Cat() { } public Cat(int year, string name) { this.Year = year; this.Name = name; } public override st... 阅读全文
摘要:
首先,有两种调用方式:直接用(需要引用Microsoft.SqlServer.DTSRuntimeWrap.dll), 通过Web Service进行执行SSIS包. 如果是直接调用那么需要引用Microsoft.SqlServer.DTSRuntimeWrap.dll,客户端需要安装MS SQL 2005的客户端组件,调用的代码如下: using System;using System.Data... 阅读全文
摘要:
以调用SQL 2005的Reporting Service为例, 此Web Service需要进行windows身份验证: string userName = "admin"; string password = "1";string domain = "TestDomain";// ReportingService 是 ... 阅读全文
摘要:
一, 对象的基本操作 1. 创建对象 // 创建空白对象var obj1 = {};var obj2 = new Object();// 创建包含初始值的对象var person = { "Name": "Terry", "age": 27, "sex:": "male"};alert(person... 阅读全文
摘要:
The New World of WorkPublished: May 19, 2005By Bill Gates, Chairman, Microsoft CorporationOver the past decade, software has evolved to build bridges between disconnected islands of information and gi... 阅读全文