资源简介

SiteServerCMS用户签收功能实现和详细使用教程

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.Sql;
using System.Data.SqlClient;
using System.Text.Regularexpressions;
using System.Collections.Generic;

/// 
/// Summary description for Sqlhelper
/// 

public class Sqlhelper
{
    
    #region 
    /// 

    /// 保存数据库连接字符串,字符值从config文件里读取
    ///     protected static readonly string sConn = ConfigurationManager.AppSettings[“ConnectionString“].ToString();
    #endregion
    #region Functions

    public Sqlhelper()
{
//
// TODO: Add constructor logic here
//
     
    }
    ///
    ///执行不返回数据集的Sql语句
    ///

    public static int ExecuteSql(string strSQL)
    {
        SqlConnection myCn = new SqlConnection(sConn);
        SqlCommand myCmd = new SqlCommand(strSQL myCn);
        try
        {
            myCn.Open();
            myCmd.ExecuteNonQuery();
            return 0;
        }
        catch (SqlException e)
        {
            throw new Exception(e.Message);
        }
        finally
        {
            myCmd.Dispose();
            myCn.Close();
        }
    }

    ///

    ///执行SQL语句,判断是否返回数据,不返回则抛出异常
    ///

    public static int ExecuteSqlEx(string strSQL)
    {
        SqlConnection myCn = new SqlConnection(sConn);
        SqlCommand myCmd = new SqlCommand(strSQL myCn);

        try
        {
            myCn.Open();
            SqlDataReader myReader = myCmd.ExecuteReader();
            if (myReader.Read())
            {
                return 0;
            }
            else
            {
                throw new Exception(“Value Unavailable!“);
            }
        }
        catch (SqlException e)
        {
            throw new Exception(e.Message);
        }
        finally
        {
            myCmd.Dispose();
            myCn.Close();
        }
    }

    ///

    ///执行SQL语句并返回数据集
    ///

    public static DataSet ExecuteSql4Ds(string strSQL)
    {
        SqlConnection myCn = new SqlConnection(sConn);
        try
        {
            myCn.Open();
            SqlDataAdapter sda = new SqlDataAdapter(strSQL myCn);
            DataSet ds = new DataSet(“ds“);
            sda.Fill(ds);
            int i = ds.Tables[0].Rows.Count;
            return i > 0 ? ds : null;
        }
        catch (SqlException e)
        {
            throw new Exception(e.Message);
        }
        finally
        {
            myCn.Close();
        }
    }

    ///

    ///执行仅返回一个数字值结果的SQL语句
    ///

    public static int ExecuteSql4Value(string strSQL)
    {
        SqlConnection myCn = new SqlConnection(sConn);
        SqlCommand myCmd = new SqlCommand(strS

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       9932  2013-04-21 18:55  SiteServerCMS用户签收功能实现+使用教程\App_Code\Sqlhelper.cs

     文件       2929  2013-04-21 21:14  SiteServerCMS用户签收功能实现+使用教程\signadmin\userSign.aspx

     文件       3457  2013-04-22 22:41  SiteServerCMS用户签收功能实现+使用教程\signadmin\userSign.aspx.cs

     文件       2923  2013-04-21 21:22  SiteServerCMS用户签收功能实现+使用教程\signadmin\userSigned.aspx

     文件       2422  2013-04-22 22:42  SiteServerCMS用户签收功能实现+使用教程\signadmin\userSigned.aspx.cs

     文件       2119  2013-04-21 22:37  SiteServerCMS用户签收功能实现+使用教程\signadmin\userSignview.aspx

     文件       5201  2013-04-21 22:40  SiteServerCMS用户签收功能实现+使用教程\signadmin\userSignview.aspx.cs

     文件       4202  2013-04-22 22:53  SiteServerCMS用户签收功能实现+使用教程\signfunc\signresult.ashx

     文件     125952  2013-05-22 16:38  SiteServerCMS用户签收功能实现+使用教程\签收使用教程.doc

     目录          0  2013-05-22 15:57  SiteServerCMS用户签收功能实现+使用教程\App_Code

     目录          0  2013-05-09 20:33  SiteServerCMS用户签收功能实现+使用教程\signadmin

     目录          0  2013-05-22 15:57  SiteServerCMS用户签收功能实现+使用教程\signfunc

     目录          0  2013-05-22 16:38  SiteServerCMS用户签收功能实现+使用教程

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

               159137                    13


评论

共有 条评论