自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(0)
  • 资源 (15)
  • 收藏
  • 关注

空空如也

CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3

CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3CMMI3标准文档模板大全(完整)+CMMI3级软件过程改进方法与规范+CMMI3

2022-05-06

iTextSharp验证PDF中签名数量及签名有效性

使用iTextSharp验证PDF文件中签名的数量、及签名的有效性、验证签名证书是否与当前单位相同

2018-11-14

C# PDF iTextSharp教程(中文)+代码实例

ItextSharp官方代码示例 iTextShrp中文教程 !

2018-11-08

DotNetBar免破解 V14.1

DotNetBar免破解 V14.1,直接安装,不需要破解。DotNetBar就是一套.NET美化控件库,有70几个控件以及多种界面的皮肤风格

2018-10-10

PDF文件解密

轻松解密已加密的PDF文件,解决了加密的PDF不能打印的超级问题。

2015-12-08

设计模式沉思录.pdf

设 计 模 式 沉 思 录

2013-04-10

DbEntry 4.0 Help.chm

DbEntry.Net (Lephone Framework) CodePlex Home Register | Sign In | CodePlex Home Search Home Downloads Documentation Discussions Issue Tracker Source Code People License Close RSS RSS Feed All Project Updates Discussions Issue Tracker Releases Reviews Source Code Wiki & Documentation RSS RSS Feed By clicking Delete, all history, comments and attachments for this page will be deleted and cannot be restored. Show Page Comments | Print View | Page Info | Change History (all pages) Documentation License Tutorials For Version 3.5 Tutorials For Version 3.6 Tutorials For Version 3.9 Tutorials For Recent Source Code: Data Access Getting started The first sight Setup First application Basic CRUD Transaction Definition and Configuration: Object definition Configuration Mapping relations Details: Linq Support Partial update Using transaction Connections Query syntax Paged query Lazy load column Relations ActsAsTree Object Validation NameMapper Special Name Soft Delete Cache System Using SQL statement Multiple data source Process Large Result Bulk Copy SQL Mapping DB Enums Performance Test ASP.NET Working with DataSource DbEntryDataSource Using DbEntryDataSource for New and Edit Page Working with Membership Http Parameter Rails Style MVC Getting Started Scaffolding Controller Viewer Configuration Deployment Utils Simple IoC TimingTask Log System Setting loader Helpers HtmlBuilder Appendix About versions About GAC About Namespaces Tools Migration Last edited May 28 at 2:52 AM by lifeng, version 10 Comments No comments yet. Sign in to add a comment System RequirementsThere are currently no defined requirements. Updating... © 2006-2011 Microsoft | Get Help | Privacy Statement | Terms of Use | Code of Conduct | Advertise With Us | Version 2011.5.24.17889

2013-04-10

DbEntry原版文档2003.doc

DbEntry原版文档2003 DbEntry.Net原版文档 一、 Getting started 1. The First Sight Basic usage 2. First Application First application The following steps shows how to create a basic database application using DbEntry.Net: • Create a console application using Visual Studio 2008. • Create a new Access mdb file named test.mdb , and store it to c:\. If you are using Access 2007, please save it as Access 2003 format. • Add the reference of Lephone.Data.dll and Lephone.Util.dll to this application. • Add an App.config to this application. • Open it in vs2005, and change it as following: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="Lephone.Settings" type="Lephone.Util.Setting.NameValueSectionHandler, Lephone.Util" /> </configSections> <Lephone.Settings> <add key="AutoCreateTable" value="true" /> <add key="DataBase" value="@Access : @C:\test.mdb" /> </Lephone.Settings> </configuration> ( If you are using Vista, please choose other drive like D: ) • Add a class file named User.cs to this application. • Open it in vs2005, and change it as following: using Lephone.Data.Definition; public class User : DbObject { public string Name; } • Open Program.cs and change it as following: using System; using Lephone.Data; class Program { static void Main(string[] args) { User u = new User(); u.Name = "tom"; Console.WriteLine("New object:\n{0}", u); DbEntry.Save(u); Console.WriteLine("Saved object:\n{0}", u); Console.ReadLine(); } }

2013-04-10

DataTable缓存数据操作

DataTable缓存数据操作 DataTable 缓存数据操作

2011-08-21

c++高质量编程 很有味儿

前 言 软件质量是被大多数程序员挂在嘴上而不是放在心上的东西! 除了完全外行和真正的编程高手外,初读本书,你最先的感受将是惊慌:“哇!我以 前捏造的C++/C 程序怎么会有那么多的毛病?” 别难过,作者只不过比你早几年、多几次惊慌而已。 请花一两个小时认真阅读这本百页经书,你将会获益匪浅,这是前面N-1 个读者的 建议。

2010-08-02

数据结构(C#语言版)

本书的内容 本书分为8章,第1章介绍了数据结构和算法的基本概念及本书用到的数学和C#的知识;第2章至第6章分别讨论了线性表、栈和队列、串和数组、树型结构和图结构等常用的数据结构及其应用,以及在.NET框架中相应的数据结构;第7、8两章分别讨论了排序和查找常用的各种方法及其应用以及在.NET框架中相应的算法。 本书特点 将数据结构与C#语言和.NET框架结合是本书的一大特点。.NET平台是微软推出的一个新的开发平台,目的是让“不同的语言共享同一平台”。.NET很可能成为下一代Windows操作系统的一部分。而C#语言作为新一代完全面向对象的语言,是.NET的母言。本书所有的数据结构和算法都是用C#语言进行描述,并在相应章节的末尾介绍了在.NET框架中常用的数据结构和算法。用C#在.NET平台开发的技术人员可以从本书中获得许多有益的知识和技术。

2010-08-02

北大青鸟 ACCP课程 S1期 MyQQ项目

北大青鸟 ACCP课程 S1期 MyQQ项目 源码+数据库

2010-04-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除