悟生慧

 

2010年7月14日

打开新的窗口并传送参数

摘要: response.write("<script>window.open(' *.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')</script>") 阅读全文

posted @ 2010-07-14 14:50 悟生慧 阅读(208) 评论(0) 推荐(0) 编辑

2010年7月8日

读取xml中的所有文件名

摘要: void FindFile(Directory d){ FileOrFolders = d.GetFileOrFolders(); foreach(FileOrFolders fof in FileOrFolders) { if(for is File) { you founda File; } else if(for is Directory) { FildFile(fof); } }} 阅读全文

posted @ 2010-07-08 11:39 悟生慧 阅读(286) 评论(0) 推荐(0) 编辑

2010年7月5日

在后台引入外部CSS文件

摘要: protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { HtmlLink link = new HtmlLink(); link.Attributes.Add("type", "text/css"); link.Attributes.Add("rel", "stylesheet"); l... 阅读全文

posted @ 2010-07-05 13:31 悟生慧 阅读(360) 评论(0) 推荐(0) 编辑

2010年7月2日

js判断是否为数字

摘要: function IsNum(num){ var reNum=/^\d*$/; return(reNum.test(num));}var str=document.getElementById("name").value; var reg = /^[\u4e00-\u9fa5]+$/i; //判断是否为汉字if (!reg.test(str)) { alert("请输入中文名字!"); docum... 阅读全文

posted @ 2010-07-02 17:22 悟生慧 阅读(1142) 评论(0) 推荐(0) 编辑

SqlServerDBHelper类

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace DAL{ /// <summary> /// 连接数据库类 /// </summary> publi... 阅读全文

posted @ 2010-07-02 16:18 悟生慧 阅读(2144) 评论(0) 推荐(0) 编辑

Ajax验证输入值是否已存在完整版

摘要: var http_request=false; function createRequest()//Ajax验证 { try//IE { http_request=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { http_request = new ActiveXObject("Microsoft.XMLHTTP"); } c... 阅读全文

posted @ 2010-07-02 16:15 悟生慧 阅读(852) 评论(0) 推荐(0) 编辑

js的Ajax验证

摘要: var http_request=false; function createRequest()//Ajax验证 { try//IE { http_request=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { http_request = new ActiveXObject("Microsoft.XMLHTTP"); } c... 阅读全文

posted @ 2010-07-02 14:22 悟生慧 阅读(1936) 评论(0) 推荐(0) 编辑

上传图片

摘要: string reason = ""; string filename = ""; try { if (FileAlbImage.FileName != "") { bool filetf = FileUp(this.Page, FileAlbImage, new string[] { ".jpg", ".gif", ".png" }, 2 * 1024 * 1024, "D+F", "../Al... 阅读全文

posted @ 2010-07-02 13:08 悟生慧 阅读(277) 评论(0) 推荐(0) 编辑

2010年7月1日

给GridView分页

摘要: private void Bind() { GV1.DataSource = newsbll.SelectNews(); GV1.DataBind(); //分页 int pageAll = Convert.ToInt32(GV1.PageCount.ToString()); this.LblCurrentIndex.Text = "第 " + (GV1.PageIndex + 1).ToStri... 阅读全文

posted @ 2010-07-01 17:29 悟生慧 阅读(153) 评论(0) 推荐(0) 编辑

js切换图片

摘要: 阅读全文

posted @ 2010-07-01 13:57 悟生慧 阅读(139) 评论(0) 推荐(0) 编辑

导航