上一页 1 ··· 50 51 52 53 54
摘要: foreach (Control c in Page.Controls) { foreach (Control childc in c.Controls) { if (childc is LinkButton) { string pp = ((LinkButton)childc).Text; //Response.Write(pp ); try { //((LinkButton)childc).Text = (int.Parse(((LinkButton)childc).Text) + 10).ToString(); int pp2 = int.Parse(((LinkButton)chil. 阅读全文
posted @ 2010-08-24 22:20 小锋神 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 快速预览:GridView无代码分页排序GridView选中,编辑,取消,删除GridView正反双向排序GridView和下拉菜单DropDownList结合GridView和CheckBox结合鼠标移到GridView某一行时改变该行的背景色方法一鼠标移到GridView某一行时改变该行的背景色方法二GridView实现删除时弹出确认对话框GridView实现自动编号GridView实现自定义时间货币等字符串格式GridView实现用“...”代替超长字符串GridView一般换行与强制换行GridView显示隐藏某一列GridView弹出新页面/弹出新窗口GridView固定表头(不用j 阅读全文
posted @ 2010-08-24 21:24 小锋神 阅读(634) 评论(0) 推荐(0) 编辑
摘要: 1)10表示间隔10秒刷新一次2)<script>window.location.reload(true);</script>如果是你要刷新某一个iframe就把window给换成frame的名字或ID号3)<script>window.navigate("本页面url");</script>4>function abc(){window.location.href="/blog/window.location.href";setTimeout("abc()",10000);} 刷 阅读全文
posted @ 2010-08-24 20:55 小锋神 阅读(870) 评论(0) 推荐(0) 编辑
摘要: 给一个网址传递参数,并接收返回的参数。 public string SendMsg(string user,string password,string phone,string text) { try { //if (!Regex.IsMatch(phone, @"^(13|15)\d{9}$")) // return "手机号码格式错误!"; string url = "http://www.xunsai.net:8000/"; string param = "user=" + user+ "& 阅读全文
posted @ 2010-08-24 20:53 小锋神 阅读(2229) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1--/*-----存储过程 分页处理 孙伟 2005-03-28创建 -------*/ 2--/*-----存储过程 分页处理 浪尘 2008-9-1修改----------*/ 3--/*----- 对数据进行了2分处理使查询前半部分数据与查询后半部分数据性能相同 -------*/ 4 5alter PROCEDURE proc_paged_2part_selectMax 6( 7@ 阅读全文
posted @ 2010-08-24 20:51 小锋神 阅读(784) 评论(0) 推荐(0) 编辑
摘要: 1 using System;2 using System.Data;3 using System.Configuration;4 using System.Collections;5 using System.Web;6 using System.Web.Security;7 using System.Web.UI;8 using System.Web.UI.WebControls;9 using System.Web.UI.WebControls.WebParts;10 using System.Web.UI.HtmlControls;11 12 public partial class 阅读全文
posted @ 2010-08-23 21:57 小锋神 阅读(642) 评论(0) 推荐(1) 编辑
摘要: CREATE PROCEDURE search_sp@tblName varchar(255), -- 表名 @strGetFields varchar(1000) = '*', -- 需要返回的列 @fldName varchar(255)='', -- 排序的字段名 @PageSize int = 10, -- 页尺寸 @PageIndex int = '', -- 页码 @doCount bit = 0, -- 返回记录总数, 非 0 值则返回 @OrderType bit = '', -- 设置排序类型, 非 0 值则降序 阅读全文
posted @ 2010-08-23 21:55 小锋神 阅读(295) 评论(0) 推荐(0) 编辑
摘要: public static bool AddOfficialCaseRegisters(string path)//选择导出的路径 { List<DataTable> dt = GetLeadinExcel(path); int z = 0; for (int i = 2; i < dt[0].Rows.Count; i++) { string sql1 = string.Format("select * from OfficialCaseRegisters where Identitycard='{0}' and FillTime='{1} 阅读全文
posted @ 2010-08-23 21:46 小锋神 阅读(437) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54