摘要:
T-SQL对字符串的处理能力比较弱,比如我要循环遍历象1,2,3,4,5这样的字符串,如果用数组的话,遍历很简单,但是T-SQL不支持数组,所以处理下来比较麻烦。下边的函数,实现了象数组一样去处理字符串。 一、按指定符号分割字符串,返回分割后的元素个数,方法很简单,就是看字符串中存在多少个分隔符号,然后再加一,就是要求的结果。 CREATEfunctionGet_StrArrayLength ( ... 阅读全文
摘要:
using System;namespace WebSite{ /// <summary> /// XXTEA 加密算法的摘要说明 /// </summary> public class XXTEA { public static Byte[] Encrypt(Byte[] Data, Byte[] Key) { if (Data.Length == 0) { return... 阅读全文
摘要:
/// <summary> /// 执行cmd.exe命令 /// </summary> /// <param name="commandText">命令文本</param> /// <returns>命令输出文本</returns> #region 执行CMD命令 public static string ExeComman... 阅读全文
摘要:
using System; using System.Text; using System.Security.Cryptography; using System.IO; //默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; /// /// DES加密字符串 /// /... 阅读全文
摘要:
string Sqlstr = "select id,Name from Test"; SqlDataAdapter da = new SqlDataAdapter(Sqlstr,conn); DataSet ds = new DataSet(); da.Fill(ds, "ds"); Object[][] values; values = new Object[ds.Tables["ds"].R... 阅读全文
摘要:
由于类中没有继承Page类,所以服务使用Server.MapPath()功能。因此要实现这个功能,我们需要如下操作。 首先要引用System.Web名字空间,然后使用下面的方法就可以得到路径~ String strPath = System.Web.HttpContext.Current.Server.MapPath("abcdefg.txt"); 阅读全文
摘要:
string ScriptStirng = ""; if (!IsClientScriptBlockRegistered("CSscript")) RegisterClientScriptBlock("CSscript", ScriptStirng); 阅读全文
摘要:
System.Web.UI.ScriptManager.RegisterClientScriptBlock(UpdatePanel1, this.GetType(), "Error", "alert('对不起,当前操作执行失败!');", true); 阅读全文
摘要:
function DisPar(id){ var obj=document.getElementById(id); var par=''; for(key in obj){ par+="obj["+key+"] = "+obj[key]+" "; } return par; } ... 阅读全文