随笔分类 - 00.Net
摘要://java serviceimport java.util.Date;public class SimpleService { public String getGreeting(String name) { return "你好 " + name+",现在时间是:"+new Date(); } public int getPrice() { return new java.util.Random().nextInt(1000); }}放入:%TOMCAT_HOME%\webapps\axis2\WEB-INF\pojo下,若没有pojo,则建立一个p
阅读全文
摘要:http://wenku.baidu.com/view/217ff860caaedd3383c4d3f9.htmliisexpress /path:<网站目录> /port:<端口> /clr:<CLR版本,V2.0|V4.0>IISExpress会复制一份配置文件到临时目录...
阅读全文
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <title>System Dashboard - </title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <m
阅读全文
摘要:浏览器的后退按钮使得我们能够方便地返回以前访问过的页面,它无疑非常有用。但有时候我们不得不关闭这个功能,以防止用户打乱预定的页面访问次序。本文介绍网络上可找到的各种禁用浏览器后退按钮方案,分析它们各自的优缺点和适用场合。一、概述曾经有许多人问起,“怎样才能‘禁用’浏览器的后退按钮?”,或者“怎样才能防止用户点击后退按钮返回以前浏览过的页面?”在ASP论坛上,这个问题也是问得最多的问题之一。遗憾的是,答案非常简单:我们无法禁用浏览器的后退按钮。起先我对于居然有人想要禁用浏览器的后退按钮感到不可思议。后来,看到竟然有那么多的人想要禁用这个后退按钮,我也就释然(想要禁用的只有后退按钮,不包括浏览器的
阅读全文
摘要:http://www.iis.net/ConfigReference/system.webServer/httpCompressionOverviewThe <httpCompression> element specifies the HTTP compression settings for Internet Information Services (IIS) 7. HTTP compression can provide faster transmission times between IIS and client browsers that can accept com
阅读全文
摘要:if (System.IO.File.Exists(this.textBox1.Text.Trim()) == false) { MessageBox.Show("文件不存在!"); return; } //法2 XElement globalXmlElement = XElement.Load(this.textBox1.Text.Trim()); var q = from c in globalXmlElement.Elements("errorInfo") group c by c.FirstAttribute.Value into g where
阅读全文
摘要:from: http://www.zvon.org/xxl/XPathTutorial/General_chi/examples.html基本的XPath语法类似于在一个文件系统中定位文件,如果路径以斜线 / 开始, 那么该路径就表示到一个元素的绝对路径 /AAA选择根元素AAA<AAA> <BBB/> <CCC/> <BBB/> <BBB/> <DDD> <BBB/> </DDD> <CCC/> </AAA> 在XLab中打开实例 | 树视图 (JPG) /AAA/CCC选
阅读全文
摘要:Loggers, Appenders and LayoutsLog4j has three main components: loggers, appenders and layouts. These three types of components work together to enable developers to log messages according to message type and level, and to control at runtime how these messages are formatted and where they are reporte
阅读全文
摘要:from:http://msdn.microsoft.com/en-us/library/3dasc8as(VS.80).aspxusing System;using System.Threading;public class Fibonacci{ public Fibonacci(int n, ManualResetEvent doneEvent) { _n = n; _doneEvent = doneEvent; } // Wrapper method for use with thread pool. public void ThreadPoolCallback(Object threa
阅读全文
摘要:Memcached 是一个高性能的分布式内存对象缓存系统,用于动态Web应用以减轻数据库负载。它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提供动态、数据库驱动网站的速度。Memcached基于一个存储键/值对的hashmap。其守护进程(daemon )是用C写的,但是客户端可以用任何语言来编写,并通过memcached协议与守护进程通信。但是它并不提供冗余(例如,复制其hashmap条目);当某个服务器S停止运行或崩溃了,所有存放在S上的键/值对都将丢失。Memcached官方:http://danga.com/memcached/关于Memcached的介绍请参考:Memca.
阅读全文
摘要:Form授权OverView: http://msdn.microsoft.com/en-us/library/9wff0kyh.aspxhttp://msdn.microsoft.com/en-us/library/xdt4thhyHow to: Implement Simple Forms Authentication<system.web> <authentication mode="Forms"> <forms loginUrl="logon.aspx" name=".ASPXFORMSAUTH"
阅读全文
摘要:源:http://docs.jquery.com/UI/Datepicker
阅读全文
摘要:来源:http://quartznet.sourceforge.net/index.html
阅读全文
摘要:Model:Controller中:
阅读全文
摘要:Using Filters to Attach Reusable BehaviorsIntroducing the Four Basic Types of FiltersNotice that ActionFilterAttribute is the default implementation for both IActionFilterand IResultFilter—it implements both of those interfaces. It’s meant to be totally generalpurpose, so it doesn’t provide any impl
阅读全文
摘要:from : Pro ASPnetMVCFramework使用:
阅读全文
摘要:
阅读全文