客户端回调实现gridView无刷新分页第五页

来源:互联网 发布:淘宝网刷单 编辑:程序博客网 时间:2024/04/29 01:56

客户端回调实现gridView无刷新分页

日期:2007年10月12日 作者: 查看:[大字体 中字体 小字体]

  • 添加到QQ书签收藏 添加到雅虎收藏 添加到百度收藏 添加到Google书签 添加到Yahoo书签 添加到新浪ViVi 添加到搜狐网摘 添加到365Key网摘 添加到天极网摘 添加到diglog 添加到和讯网摘 添加到POCO网摘 添加到YouNote网摘 添加到博拉网 添加到天下图摘 Del.icio.us digg reddit spurl BlinkList blogmarks



  • <script type="text/javascript"><!--google_ad_client = "pub-0692289505803928";google_ad_width = 300;google_ad_height = 250;google_ad_format = "300x250_as";google_ad_type = "text_image";google_ad_channel = "6926205886";google_color_border = "FFFFFF";google_color_bg = "FFFFFF";google_color_link = "000060";google_color_text = "000000";google_color_url = "008000";//--></script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script> <iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-0692289505803928&amp;dt=1206921741656&amp;lmt=1199876374&amp;format=300x250_as&amp;output=html&amp;correlator=1206921741640&amp;channel=6926205886&amp;url=http%3A%2F%2Fwww.hackhome.com%2FInfoView%2FArticle_151990_5.html&amp;color_bg=FFFFFF&amp;color_text=000000&amp;color_link=000060&amp;color_url=008000&amp;color_border=FFFFFF&amp;ad_type=text_image&amp;ref=http%3A%2F%2Fwww.hackhome.com%2FInfoView%2FArticle_151990_4.html&amp;frm=0&amp;cc=100&amp;ga_vid=683455363.1206921742&amp;ga_sid=1206921742&amp;ga_hid=1265361409&amp;flash=9.0.47.0&amp;u_h=768&amp;u_w=1024&amp;u_ah=738&amp;u_aw=1024&amp;u_cd=32&amp;u_tz=480&amp;u_his=4&amp;u_java=true" frameborder="0" width="300" scrolling="no" height="250" allowtransparency="allowtransparency"></iframe>    public static ArrayList QueryLog(string strOperator,DateTime dtStartTime,DateTime dtEndTime, string strOrderField,

           int intASC, int PageIndex, int rowCount, out int recordSum)
        ...{
            // 返回集合
            ArrayList myArrayList = new ArrayList();

     

            // 创建连接
            OracleConnection myConnection = new OracleConnection(DatabaseConnectionString);

            try
            ...{
                // 打开连接
                myConnection.Open();
            }
            catch (Exception ex)
            ...{
                throw (ex);
            }

            try
            ...{
                // 创建存储过程
                OracleCommand myCommand = new OracleCommand("H_QUERYPACK.QUERYLOG", myConnection);
                myCommand.CommandType = CommandType.StoredProcedure;
                OracleDataReader dr;

                // ============================== 参数定义 ==============================

                // 返回值

  •  
原创粉丝点击