摘要:
摘自:http://blog.csdn.net/hechurui/article/details/22398849 首先建立一个Access_token类 /// <summary> ///Access_token 的摘要说明 /// </summary> public class Access_t 阅读全文
摘要:
注:本文摘自:http://blog.csdn.net/heshengfen123/article/details/3597125 在执行SQL脚本过程中如果出现 禁止在 .NET Framework 中执行用户代码。启用 "clr enabled" 配置选项的解决办法是: 执行以下脚本: exec 阅读全文
摘要:
摘自:http://www.cnblogs.com/starcrm/p/4837971.htmlpublic class JiraApi{private string m_Username;private string m_Password;public JiraApi(string usernam... 阅读全文
摘要:
/// /// 清除文本中Html的标签/// /// /// public static string ClearHtml(string Content){Content = Zxj_ReplaceHtml("&#[^>]*;","", Content);Content = Zxj_Replace... 阅读全文
摘要:
摘自:http://www.cnblogs.com/RiseSoft/archive/2012/03/17/2404007.html之前在项目中处理的都是一些小数据量的XML文件,都是直接用.Net Framework中System.XML命名空间下的基本的XmlDocument、XmlElemen... 阅读全文
摘要:
摘自:http://www.cnblogs.com/zhangzt/archive/2009/12/14/1623426.htmlusing System;using System.Data;using System.Configuration;using System.Web;using Syst... 阅读全文
摘要:
定位子串是指在一个字符串中寻找其中包含的子串或者某个字符。在String类中,常用的定位子串和字符的方法包括IndexOf/LastIndexOf及IndexOfAny/LastIndexOfAny,下面进行详细介绍。1.IndexOf/LastIndexOfIndexOf方法用于搜索在一个字符串中... 阅读全文
摘要:
String.IndexOfString.IndexOf 方法 (Char, Int32, Int32)报告指定字符在此实例中的第一个匹配项的索引。搜索从指定字符位置开始,并检查指定数量的字符位置。String.IndexOf(value, startIndex, count)参数value:要查找... 阅读全文
摘要:
javascript控制图片缩小或者放大 放大 缩小 阅读全文
摘要:
document.title //设置文档标题等价于HTML的title标签document.bgColor //设置页面背景色document.fgColor //设置前景色(文本颜色)document.linkColor //未点击过的链接颜色document.alinkColor //激活链接... 阅读全文