文章分类 -  .NET

.net软件知识
转 web.config从.net framework3.5向4.0迁移注意事项
摘要:web.config从.net framework3.5向4.0迁移注意事项原文:http://blog.sina.com.cn/s/blog_56a68d5501010p2b.html参考:http://www.cnblogs.com/pandora/archive/2010/03/12/asp_... 阅读全文

posted @ 2015-01-28 13:38 荣锋亮 阅读(590) 评论(0) 推荐(1) 编辑

转 AutoMapper 学习
摘要:AutoMapper是一个.NET的对象映射工具。项目地址:https://github.com/AutoMapper/AutoMapper。帮助文档:https://github.com/AutoMapper/AutoMapper/wiki主要用途领域对象与DTO之间的转换、数据库查询结果映射至实... 阅读全文

posted @ 2014-12-24 17:01 荣锋亮 阅读(201) 评论(0) 推荐(0) 编辑

转.Net开源网络爬虫Abot介绍
摘要:.Net中也有很多很多开源的爬虫工具,abot就是其中之一。Abot是一个开源的.net爬虫,速度快,易于使用和扩展。项目的地址是https://code.google.com/p/abot/对于爬取的Html,使用的分析工具是CsQuery, CsQuery可以算是.net中实现的Jquery, ... 阅读全文

posted @ 2014-12-24 09:13 荣锋亮 阅读(473) 评论(0) 推荐(0) 编辑

转 创建 .NET Framework 语言编译器
只有注册用户登录后才能阅读该文。

posted @ 2014-12-01 13:59 荣锋亮 编辑

JS优化工具 Doloto
摘要:微软发布了一个用来优化JS加载性能的客户端工具:Doloto。官方页面上说它对于大型复杂的AJAX应用尤其的有用,因为这些应用包含了大量的 JavaScript 代码。简单的说,它的工作原理就是把页面中最先用到的JavaScript代码剥离出来,将页面初始化时候加载的JavaScript的代码量降到... 阅读全文

posted @ 2014-10-27 13:35 荣锋亮 阅读(271) 评论(0) 推荐(0) 编辑

Remote window application by Javascript in realtime
摘要:IntroductionWhen I create a window application, I want to know some way to send a message or control application from the internet, but I'm not found ... 阅读全文

posted @ 2014-10-16 08:52 荣锋亮 阅读(243) 评论(0) 推荐(0) 编辑

使用数字签名为 XML 文档签名
摘要:可以使用System.Security.Cryptography.Xml命名空间中的类通过数字签名对 XML 文档或 XML 文档的部分进行签名。使用 XML 数字签名 (XMLDSIG),您可以验证签名后的数据没有被更改。有关 XMLDSIG 标准的更多信息,请参见万维网联盟 (W3C) 建议XM... 阅读全文

posted @ 2014-10-05 03:24 荣锋亮 阅读(1470) 评论(0) 推荐(0) 编辑

Microsoft SharePoint Server 2010 简体中文版及相关资源
摘要:Microsoft SharePoint Server 2010 是适用于企业和网络的业务协作平台,可以帮助您通过一系列集成的丰富功能将用户联系起来,让用户的工作更为出色。无论是在内部部署还是通过托管获取服务,SharePoint Server 2010 都能为您提供统一的基础结构,在降低成本的同时... 阅读全文

posted @ 2014-05-24 14:26 荣锋亮 阅读(433) 评论(0) 推荐(0) 编辑

如何:在最终用户计算机上安装系统必备组件以便运行 Office 解决方案
摘要:如果您创建安装程序,可以选择将哪些系统必备组件作为安装程序的一部分安装。这些组件没有捆绑到安装文件中。应指定以下三个位置之一,作为安装程序查找、下载和安装系统必备组件的位置:供应商网站。与自定义项相同的安装位置。指定的下载服务器。适用于:本主题中的信息适用于 Microsoft Office 201... 阅读全文

posted @ 2014-05-23 22:46 荣锋亮 阅读(1348) 评论(0) 推荐(0) 编辑

asp.net dataset 导出excel
摘要:/// /// excel 数据导出 /// /// /// public void CreateExcel(DataSet ds, string FileName) { HttpResponse resp; resp =... 阅读全文

posted @ 2014-04-22 09:59 荣锋亮 阅读(166) 评论(0) 推荐(0) 编辑

转 asp.net中获得客户端的IP地址
摘要:因为要在项目中取到客户端IP,在网上搜了下相关资料,其中有一篇文章总结的比较详细,这里就把一些我用的上总结一下方便以后查阅.通常我们都通过下面的代码获得IP:stringip =System.Web.HttpContext.Current.Request.UserHostAddress;或strin... 阅读全文

posted @ 2014-04-18 09:29 荣锋亮 阅读(172) 评论(0) 推荐(0) 编辑

Getting started with ASP.NET Web API 2.2 for OData v4.0
摘要:A few weeks ago we started publishing nightly builds for our initial support in ASP.NET Web API for the OData v4.0 protocol. Our OData v4.0 support is based on the OData Library for OData v4.0 that has been released in the past few months. The OData v4.0 protocol introduces a lot of changes and new 阅读全文

posted @ 2014-04-01 22:43 荣锋亮 阅读(1041) 评论(0) 推荐(0) 编辑

ASP.NET Web API Gets OData v4.0 Support, WCF Will Not
摘要:ASP.NET Web API 2.2 for OData v4.0 are now available as nightly builds. The team alsoreleased OData core libraries version 6.1 on nugetwith several bug fixes and new features, especially increased support for OData v4 spec. However, the MS team suggested that WCF will not get OData v4 specific featu 阅读全文

posted @ 2014-04-01 22:39 荣锋亮 阅读(307) 评论(0) 推荐(0) 编辑

Programmatically disable/enable Windows firewall
摘要:By petersunde, 24 Jan 2007IntroductionThis article teaches you how to disable and enable your Windows firewall programmatically.SetupCreate a new Windows Application project.Click on Project->Add Reference and add the following files:Click Browse tab -> Add C:\windows\system32\Hnetcfg.dll.Clic 阅读全文

posted @ 2013-12-24 16:05 荣锋亮 阅读(487) 评论(0) 推荐(0) 编辑

C# COM Object for Use In JavaScript / HTML, Including Event Handling
摘要:By Jerome Terry, 22 Apr 2009Download source - 5.12 KB IntroductionI wanted to be able to use a pre-built .NET object inside a web browser. After searching the web (including CodeProject), I found that a possible solution would be to create a .NET COM component and use the ActiveXObject in JavaScrip. 阅读全文

posted @ 2013-12-24 16:02 荣锋亮 阅读(550) 评论(0) 推荐(0) 编辑

Accessing Hardware in Silverlight using COM
摘要:By esaulsberry, 26 May 2010Download source - 30.61 KBIntroductionSilverlight 4 gives access to the user's microphone and camera, and adds printing capabilities, but as far as hardware goes, that's it. Fortunately Silverlight 4 also provides access in Elevated Trust Out-Of-Browser application 阅读全文

posted @ 2013-12-24 16:01 荣锋亮 阅读(294) 评论(0) 推荐(0) 编辑

.net remoting 技术
摘要:Remoting编辑目 录1简介2主要元素3两种通道4激活方式5对象定义6服务器7客户8基础补充9小结1简介什么是Remoting,简而言之,我们可以将其看作是一种分布式处理方式。从微软的产品角度来看,可以说Remoting就是DCOM的一种升级,它改善了很多功能,并极好的融合到.Net平台下。Microsoft .NET Remoting 提供了一种允许对象通过应用程序域与另一对象进行交互的框架。这也正是我们使用Remoting的原因。为什么呢?在Windows操作系统中,是将应用程序分离为单独的进程。这个进程形成了应用程序代码和数据周围的一道边界。如果不采用进程间通信(RPC)机制,则在一 阅读全文

posted @ 2013-11-12 14:18 荣锋亮 阅读(492) 评论(0) 推荐(0) 编辑

WCF with CLR Trigger
摘要:Invoking a WCF Service from a CLR TriggerBySam Shiles,30 Jan 2008Download source code - 21.9 KBIntroductionThis article will walk you through all the steps necessary to setup a sample project demonstrating how to create a CLR Trigger in SQL Server 2005 that will communicate with a WCF service of you 阅读全文

posted @ 2013-11-07 13:02 荣锋亮 阅读(253) 评论(0) 推荐(0) 编辑

C# 中获取系统安装的MS Offfice信息(是否安装、版本、安装路径)
摘要:using System;using System.Collections.Generic;using System.Text;namespace WpsTest{ public class OfficeOperator { #region 方法 #region public static /// /// 检测MS-Office是否正确安装 /// 通过注册表检测 /// /// 获得安装的版本号,如office2000,office2003,office2007 /// public static bool IsInstall(out string Version) { bool re... 阅读全文

posted @ 2013-10-31 09:38 荣锋亮 阅读(709) 评论(0) 推荐(0) 编辑

字符编码
摘要:privatevoidbutton1_Click(objectsender,EventArgse){//汉字转为Unicode编码:stringhz=textBox1.Text.ToString();byte[]b=Encoding.Unicode.GetBytes**;stringo="";foreach(varxinb){o+=string.Format("{0:X2}",x)+"";}textBox2.Text=o;}privatevoidbutton2_Click(objectsender,EventArgse){//Unic 阅读全文

posted @ 2013-10-28 17:03 荣锋亮 阅读(225) 评论(0) 推荐(0) 编辑

导航