- 浏览: 109893 次
- 性别:
- 来自: 广州
最新评论
-
amyasp:
这个这个不用自己写了吧,string.join看看这个
自己写的一个方法(字符串数组转换字符串),可能不是很严谨,以后再改改
文章列表
.NET加密与解密类
- 博客分类:
- .net
using System;using System.Security.Cryptography; using System.Text;namespace Common.DES{ /// <summary> /// DES加密/解密类。 /// </summary> public class DESEncrypt { public DESEncrypt() { }
#region ========加密======== /// <summary> /// 加密 /// </summary> ...
dt = new SqlDataAdapter(sql, sqlconn);dt.Fill(ds);
当sql语句是带参数传递的话,这里会报出异常,这个SqlDataAdapter对象不支持 带参数sql 填充到datatable里面去
只能使用
using (dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)) { dt.Load(dr);}
抽象工厂访问不同的数据库(反射+缓存)
- 博客分类:
- .net
<appSettings> <add key="conn" value="~/App_Data/test.mdf"/> <add key="db" value="Access"/> </appSettings>
为什么 JSON格式的名字部分加引号?
因为eval函数会将{foo:”bar”}解释成合法的JavaScript语句,而非表达式。但是人们往往想要的是让eval将这段代码解释成一个对象。所以JSON格式会强制在名字的外侧加上引号再结合圆括号,这样eval就不会错误的将JSON解释成代码块。
举例说明
eval错误解析语义
alert(eval('{foo:"bar"}')); // return "bar", incorrect
eval正确解析JSON
alert(eval('({"foo&quo ...
定义一个类:
class Student { public string Name { get; set; } public string Sex { get; set; } public string StuID { get; set; } public string School { get; set; } public int Year { get; set; } }
//直 ...
1.新建一个类库 命名空间为默认 类名为默认 不改
2.添加一个方法
public string TestMethod() { return "test method"; }
3.在另外一个项目添加引用它的dll
4.using 命名空间
using ClassLibrary1;namespace 抽象类练习1{ class Program { static void Main(string[] args) { C ...
List<int> arry = new List<int>() {-1,1,2,3,4,5,6,7,8,9}; int min=arry[0];//初始化 for (int i = 0; i < arry.Count; i++) { if (min>arry[i]) { min = arry[i]; }
...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb231 ...
sql server 2005以上版本可以用
access不支持
declare @a int
set @a=2
select top (@a) * from [表名]
事件的冒泡
- 博客分类:
- Javascript
<table onclick="alert('我是table标签,被点了!');"> <tr onclick="alert('我是tr标签,被点了!');"><td onclick="alert('我是td标签,被点了!');"><p onclick="alert('我是p标签,被点了!');">我是p标签</p></td></tr></table>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8 ...
第一种方法:不兼容IE6 7 代码跟第二方法js一样 只是js的函数要修改一下
function btnTable(){ var tableName=document.getElementById("tables"); var data={"百度":"http://www.baidu.com","谷歌":"http://www.google.cn","新浪":"http://www.sina.com"}; for(var key in data){ ...
int[] arry = new int[98]; Random rd = new Random(); List<int> temp = new List<int>(); //随机产生98个1-100自然数 while (temp.Count<98) { int result = rd.Next(1, 101);//随机产生1~100随机数; if (temp.Contains(result ...
<title>无标题文档</title><script type="text/javascript">function copyText(){ var value=clipboardData.getData("Text")+"本文来自walleyekneel博客,转载请注明来源"+location.href; window.clipboardData.setData("Text",value); }</script></head>
<bod ...
<title>无标题文档</title><script type="text/javascript">function f1(){ var txt="我发现一个很黄很暴力的网站,"+location.href; window.clipboardData.setData("Text",txt); alert("已经复制到粘贴板里面,快将它分享给你好友吧!!!"); }</script></head><body><input typ ...