Fork me on GitHub

04 2013 档案

摘要:string strwhere = " IsShow='0' ";c#里的'0','1'对应sqlserver2005中的False,True 阅读全文
posted @ 2013-04-28 14:28 思考的大腿 阅读(1855) 评论(0) 推荐(0) 编辑
摘要:04|06|07|08|for (int i = 0; i < expert.CountryID.Split('|').Length; i++){for (int j = 0; j < chkCountry.Items.Count; j++){if (expert.CountryID.Split('|')[i] == chkCountry.Items[j].Value){chkCountry.Items[j].Selected = true;}}} 阅读全文
posted @ 2013-04-27 09:36 思考的大腿 阅读(129) 评论(0) 推荐(0) 编辑
摘要:using System;using System.Collections;using System.Configuration;using System.Data;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;namespace CSCDF.Web{ public partial class tes... 阅读全文
posted @ 2013-04-26 13:36 思考的大腿 阅读(184) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 获取记录总数 /// </summary> public int GetRecordCount(string strWhere) { StringBuilder strSql = new StringBuilder(); strSql.Append("select count(1) FROM tb_Expert "); if (strWhere.Trim() != "") { strSq... 阅读全文
posted @ 2013-04-26 10:48 思考的大腿 阅读(351) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 分页获取数据列表 /// </summary> public DataSet GetList(int PageSize,int PageIndex,string strWhere) { SqlParameter[] parameters = { new SqlParameter("@tblName", SqlDbType.VarChar, 255),//表明 new SqlParameter("@fldNa... 阅读全文
posted @ 2013-04-26 10:47 思考的大腿 阅读(743) 评论(0) 推荐(0) 编辑
摘要:CREATE PROCEDURE [dbo].[UP_GetRecordByPage] @tblName varchar(255), -- 表名 @fldName varchar(255), -- 主键字段名 @PageSize int = 10, -- 页尺寸 @PageIndex int = 1, -- 页码 @IsReCount bit = 0, -- 返回记录总数, 非 0 值则返回 @OrderType bit = ... 阅读全文
posted @ 2013-04-26 10:45 思考的大腿 阅读(208) 评论(0) 推荐(0) 编辑
摘要://获取浏览器版本 string s1=Request.ServerVariables["HTTP_USER_AGENT"]; Response.Write(s1); 阅读全文
posted @ 2013-04-17 14:04 思考的大腿 阅读(329) 评论(0) 推荐(0) 编辑