摘要:
sqlserver2008的数据库自动备份方法http://www.cnblogs.com/yunfei181/archive/2010/12/09/1901033.html 阅读全文
该文被密码保护。 阅读全文
摘要:
http://www.cnblogs.com/cuihongyu3503319/archive/2008/01/21/1047211.htmlhttp://www.cnblogs.com/lovecherry/archive/2005/05/19/158784.html 阅读全文
摘要:
Socket,webservices,remoting,WCFSocket是老牌的传输,基于tcp/ip的传输,主要是Listen,Send,Receive从webservices,,remoting开始,我们可以自定义方法来传输数据了,webservices可以生成代理类,而remoting则更方便,直接服务器和客户端可以用一个对象来解决,其实感觉就是动态生成的代理类(不过其核心,一个是远程对象副本,一个是远程对象)WCF更是集这些通信的大成,自定义方法和代理类当然没有丢掉核心是(下面转一段文章)WCF服务需要依存一个运行着的进程(宿主),服务寄宿就是为服务指定一个宿主的过程。WCF是一个基 阅读全文
摘要:
http://blog.csdn.net/hualusiyu/article/details/7920614. Net 中 WebServices 的实战下面呢,就来具体看看在 . Net 中如何开发一个 WebServices 以及如何使用这个 WebServices 开发环境:Windows 7 下 IIS 7.5Visual Studio Team System 2008Sql Server 2008首先来看看如何开发一个 WebServices 先建立一个 ASP.NET 应用程序项目,然后再在项目中添加一个 WebServices 服务,然后就是在这个 WebServiceTest 阅读全文
摘要:
网址为:http://www.webxml.com.cn/zh_cn/web_services.aspx有如下一些web service股票行情数据 WEB 服务(支持香港、深圳、上海基金、债券和股票;支持多股票同时查询)商业和贸易Endpoint:http://www.webxml.com.cn/WebServices/StockInfoWS.asmxDisco:http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?discoWSDL:http://www.webxml.com.cn/WebServices/StockInfoWS.asm 阅读全文
摘要:
http://www.cnblogs.com/java-pan/archive/2011/12/31/highcharts.html另MVC3下:View Code /***************************************************************/ $(".validatebox-text").val() //取多选下拉框的值 $("#Foot").css("display", ""); //将分页的控件显示出来 $("#pp").show(); 阅读全文
摘要:
singleSelect: true,frozenColumns: [[{ field: 'ck', formatter: function (value, row, index) { return '<input type="radio" name="rd_action" />'; } }]],onClickRow: function (row) { $("input[name=rd_action]", $("div.datagrid-view1 tr.datagrid-row- 阅读全文
摘要:
子节点深度级联获取所有父节点:View Code USE [DBName]GO/****** Object: StoredProcedure [dbo].[P_GetCategoryParentByCategoryID] ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO-- =============================================-- Author: xxx-- Create date: xxx-- Description: 子节点向上获取所有节点-- =============... 阅读全文
摘要:
/// <summary> /// 实体类转换成DataTable /// 调用示例:DataTable dt= FillDataTable(Entitylist.ToList()); /// </summary> /// <param name="modelList">实体类列表</param> /// <returns></returns> public static DataTable FillDataTable<T>(List<T> ... 阅读全文
该文被密码保护。 阅读全文
摘要:
for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn" 阅读全文
摘要:
View Code View Code using System; using System.Collections; using System.DirectoryServices; using Microsoft.Win32; namespace SCL { public class IISHelper { static DirectoryEntry iisDE = new DirectoryEntry("IIS://localhost/W3SVC"); //判断 IIS是否安装 public static bool IsIISSetup { get { object o 阅读全文
摘要:
DirectoryEntry是.Net给我们的一大礼物,他的名字我们就知道他的功能--目录入口。使用过ADSI的人都知道操作IIS,WinNT这些时,我们还需要提供他们的Path,操作IIS时,这个Path的格式为:IIS://ComputerName/Service/Website/DirectoryComputerName:即操作的服务器的名字,可以是名字也可以是IP,经常用的就是localhostService:即操作的服务器,IIS中有Web,也有FTP,还有SMTP这些服务,我们主要是操作IIS的Web功能,因此此处就是"W3SVC",如果是FTP则应是" 阅读全文
摘要:
JS:View Code /*************************Begin弹出框*******************************////显示弹出框///参数: url:url 地址,title:标题,width:宽度,height:高度var isFirstPop = true;var isIE6 = isIE6();function showDiv(url, title, width, height) { //第一次运行时加载弹框 if (isFirstPop == true) { loadShowDiv(); isFirs... 阅读全文
摘要:
Action:View Code protected override void OnException(ExceptionContext filterContext) { if (filterContext == null) return; var ex = filterContext.Exception ?? new Exception(" not futher infomation exists ."); filterContext.ExceptionHandled = true... 阅读全文
摘要:
http://www.cnblogs.com/fellowcheng/archive/2010/08/21/1805158.html上面没有读取Excel文件的方法,补充一个:View Code FileStream stream = File.Open(filePath, FileMode.Open, FileAccess.Read);//1. Reading from a binary Excel file ('97-2003 format; *.xls)IExcelDataReader excelReader = ExcelReaderFactory.CreateBinaryRe 阅读全文
摘要:
1 建bat文件自动执行复制,删除命令。 例1:以下是复制cd.dll文件至windows\system32的bat文件内容: copy cd.dll %windir%\system32 例2:下面一行是卸载windows\system32目录中的cd.dll,即把上面复制的文件删除: del %windir%\system32\cd.dll 例3:删除download文件夹中的文件,例子如下: del C:\DOWNLOAD\*.*[注意]:这里的del命令只能删文件,不能删文件夹。要删除文件夹得用rd命令,如下: rd Filemon这里filemon文件夹和该bat文件在同一目录下,就. 阅读全文
摘要:
利用IIS7自带类库管理IIS现在变的更强大更方便,而完全可以不需要用DirecotryEntry这个类了(乐博网中很多.net管理iis6.0的文章都用到了DirecotryEntry这个类 ),Microsoft.Web.Administration.dll位于IIS的目录(%WinDir%\\System32\\InetSrv)下,使用时需要引用,它基本上可以管理IIS7的各项配置,这个类库的主体结构如下:这里wenqi只举几个例子说明一下基本功能,更多功能请参考MSDN。建立站点string SiteName="乐博网"; //站点名称string BindArgs 阅读全文
摘要:
方法一:osql.exe(这种方式最简单,但貌似微软以后会取消这个功能,改为SqlCmd了)最简单的方法就是调用 osql.exe .具体方法如下(以sql server200 数据库为例): try { System.Diagnostics.Process pr = new System.Diagnostics.Process(); pr.StartInfo.FileName = "osql.exe "; pr.StartInfo.Arguments = "-U sa -Psa -d master -s127.0.0.1 -i Sql.sql"; pr 阅读全文