用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心.Net

ASP.NET结合存储过程写的通用搜索分页程序

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-12 15:55:48

存储过程改自bigeagle的论坛分页程序。请大家批判!:)
select.aspx

--------------------------------------------------------------------------------

<%@ Page Language="C#" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.SqlClient" %>
<script runat="server">

    protected void Page_Load(Object sender, EventArgs e)
         {
             int intPageNo,intPageSize,intPageCount;
             intPageSize = 25;
             if (Request["CurrentPage"]==null)
                 {
                     intPageNo = 1;
                 }
             else
                 {
                     intPageNo = Int32.Parse(Request["CurrentPage"]);
                 }
            
            
             SqlConnection MySQL(和PHP搭配之最佳组合)Connection = new SqlConnection("server=(local);Database=test;user id=sa;password=");
             SqlCommand MySQL(和PHP搭配之最佳组合)Command = new SqlCommand("up_GetTopicList", MySQL(和PHP搭配之最佳组合)Connection);
             MySQL(和PHP搭配之最佳组合)Command.CommandType = CommandType.StoredProcedure;
            
             SqlParameter workParm;
            
             //搜索表字段,以","号分隔
             workParm = MySQL(和PHP搭配之最佳组合)Command.Parameters.Add("@a_TableList", SqlDbType.VarChar, 200);
             MySQL(和PHP搭配之最佳组合)Command.Parameters["@a_TableList"].Value = "OFFERID,type,offertime";
            
             //搜索表名
             workParm = MySQL(和PHP搭配之最佳组合)Command.Parameters.Add("@a_TableName", SqlDbType.VarChar, 30);

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

栏目导航

本类热门阅览

相关文章

PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:11,421.88000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号