01 2013 档案
摘要:可采用“附加数据库”的方式
阅读全文
摘要:using System;using System.Collections;using System.Collections.Generic;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using System.IO;using System.Linq;using System.Net;using System.Text;using System.Text.RegularExpressions;using System.Threading;using System.Timers
阅读全文
摘要:连接地址:http://aivii.blog.163.com/blog/static/365225662011229113332158/分布式事务TransactionScope以下是分布式事务的所有情况的例子了,包含了事务套事务,事务套存储过程事务,经过测试,TransactionScope对于分布式事务的各种情况支持的很好。使用分布式事务注意如下几点:1:确保参与事务的machine开启了分布式事务支持;2:如果machine开启了防火墙,需要设置msdtc进程为例外;3:参与事务的machine不能跨域(如果跨域,目前微软还没有确切的解决方案);4:多数据库时才使用分布式事务,如果是同一
阅读全文
摘要:获取当前登录用户COOKIE字符串JS获取方式<head id="Head1" runat="server"> <title></title> <script type='text/javascript' src='/j/jquery-1.7.2.min.js'></script> <script type='text/javascript' src='/j/jquery.cookie.js'></script&g
阅读全文
摘要:JQUERY 遍历数组function loginSinglePoint(cookiestr) { var urls = ["http://www.xxxx.com.cn/ajax/UserAjax.ashx?ajaxMethod=loginsinglepoint&userco=", "http://www.xxx.com/ajax/UserAjax.ashx?ajaxMethod=loginsinglepoint&userco="]; $.each(urls, function (i, n) { $.ajax({ type: "
阅读全文
摘要:后台代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.SessionState;using LaChapelle.Common;using LaChapelle.Components;using LaChapelle.LINQ.GOODS;using System.Text;using LaChapelle.LINQ.USER;namespace LaChapelle.CandiesWeb.ajax{/// <summary>///
阅读全文
摘要:很久就听说FreeTextBox不错,就下载了来用了下,发现网上介绍的文档少的可怜。在参考了前人的文档以后写点详细的文档出来,废话少说,到http://www.freetextbox.com/网站上,都是英文,没事,不用管它,点Download,里面有个Download Control (3.1.6)(zip)点击就可以了,下完以后是个压缩文件,解压开来,有这几个主要文件:aspnet_client FreeTextBox的外观文件,直接拷贝到你的工程的目录下就可以了。Docs 文档嘛,就是说明文档,只有一个帮助文件examples 这是人家官方调试好的例子Framework-2.0 适合.n
阅读全文