ASP.NET中如何调用存储过程

ASP.NET中如何调用存储过程

asp.NET与SQL SERVER可是缘份最好了,稍大的程序一般第一先考虑的是SQL SERVER,只是一些很考虑经济的才使用ACCESS等了。用SQL SERVER,为了使数据库的效率更好,一般都会才取存储过程,因存储过程执行速度快,并且可以实现一些高级的查询等功能。比如传入一些数据参数,但执行的SQL过程可能不同等。
  下面就来个例子,建立一新的角色,要求角色的名字不能重复,以下是一存储过程。
  CREATE PROCEDURE sp_AccountRole_Create@CategoryID int,
@RoleName nvarchar(10),
@Description nvarchar(50),
@RoleID int output
AS
    DECLARE @Count int    — 查找是否有相同名称的记录
    SELECT @Count = Count(RoleID) FROM Account_Role WHERE
        RoleName = @RoleName    IF @Count = 0        INSERT INTO Account_Role
        (CategoryID, RoleName, Description) valueS
        (@CategoryID, @RoleName, @Description)        SET @RoleID = @@IDENTITY        RETURN 1
GO

  
  执行存储过程的C#过程:
  SqlConnection DbConnection = new SqlConnection(mConnectionString);
SqlCommand command = new SqlCommand( "sp_AccountRole_Create", DbConnection );
DbConnection.Open(connectString);
// 废置SqlCommand的属性为存储过程
command.CommandType = CommandType.StoredProcedure;command.Parameters.Add("@CategoryID", SqlDbType.Int, 4);
command.Parameters.Add("@RoleName", SqlDbType.NVarChar, 10);
command.Parameters.Add("@Description", SqlDbType.NVarChar, 50);
command.Parameters.Add("@RoleID", SqlDbType.Int, 4);
// 返回值
command.Parameters.Add("Returnvalue",
            SqlDbType.Int,
            4,        // Size
            ParameterDirection.Returnvalue,
            false,        // is nullable
            0,        // byte precision
            0,        // byte scale
            string.Empty,
            DataRowVersion.Default,
            null );command.parameters["@CategoryID"].value = permission.CategoryID;
command.parameters["@RoleName"].value = permission.PermissionName;
command.parameters["@Description"].value = permission.Description;
// 可以返回新的ID值
command.parameters["@RoleID"].Direction = ParameterDirection.Output;int rowsAffected = command.ExecuteNonQuery();
int result = command.parameters["Returnvalue"].value;
int newID = command.parameters["@RoleID"].value;

  功能挺强的吧,可以得到三个值,分别是行影响值,存储过程返回值,新的ID值。

页面无刷新的PostBack事件

页面无刷新的PostBack事件

TextBox的onchange事件会引起页面重新刷新,这使得输入很不方便,于是我想了以下的解决办法。
思路:1、调用简单的前台脚本打开一个新页, 2、把相关参数传递给该新页处理(该新页的前后台均可处理), 3、处理后所得数据再用前台脚本返回opener, 4、数据处理完毕后被打开的页面自动关闭。代码例:要处理的页面send.aspx:
string windowAttribs = "width=10px," + "height=10px," + "left='+((screen.width +" + "10" + ") * 2)+'," + "top='+ (screen.height + " + "10" + ") * 2+'";

TextBox2.Attributes["onchange"] = "var aaa = this.value;window.open('open_XML.aspx?get_id=TextBox2&get_value='+aaa,'open_test','"+windowAttribs+"')";

TextBox3.Attributes["onchange"] = "var aaa = this.value;window.open('open_page.aspx?get_id=TextBox3&get_value='+aaa,'open_test','"+windowAttribs+"')";

打开的页面open_page.aspx:
private void Page_Load(object sender, System.EventArgs e)

{

object ls_o1 = Request.QueryString["get_id"].ToString();

object ls_o2 = Request.QueryString["get_value"].ToString();

if(ls_o1 != null && ls_o2 != null)

{

get_id.Value = (string)ls_o1;

get_value.Value = (string)ls_o2;

}

send_value_back();

}

private void send_value_back()

{

if(get_id.Value != "" && get_value.Value != null)

{

this.Response.Write("window.opener.Form1."+get_id.Value+".value='aaaaaaaaaaaa'"+"");

this.Response.Write("window.opener=null;window.close();");

}

}