Click here to Skip to main content
15,905,504 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to use stored procedure coding for both insert and update in code behind(.cs) file in single function... I have written the code for insert , here I have to make this code for update also in code behind file…

SQL
create proc sp_userinformation
 (
 @username varchar(20),
 @password varchar(20),
 @firstname varchar(20),
 @lastname varchar(20),
 @email varchar(20),
 @phoneno varchar(20),
 @location varchar(15),
 @created_by varchar(20),
 @ERROR char(500) output),
 @indicator char(1)-----U-update and I--Insert
 as
 
if @indicator='I'
begin
 insert into userinformation(username,password,firstname,lastname,email,phoneno,location,created_by)values (@username,@password,@firstname,@lastname,@email,@phoneno,@location,@created_by) 
set @ERROR='Sucessfully Inserted'
end
 
If @indicator='U'
begin
   update userinformation set
 username=@username,password=@password,firstname=@firstname, lastname =@lastname, ,location=@location,created_by=@created_by where email=@email or phoneno=@phoneno
 
 set @ERROR='Sucessfully Updated'
 
end

protected void btnsubmit_Click(object sender, EventArgs e)
{
string UserName = txtuser.Text;
string Password = txtpwd.Text;
string ConfirmPassword = txtcnmpwd.Text;
string FirstName = txtfname.Text;
string LastName = txtlname.Text;
string Email = txtEmail.Text;
string Phoneno = txtphone.Text;
string Location = txtlocation.Text;
string Created_By = txtuser.Text;
int count = 0;
SqlConnection con = new SqlConnection("Data Source=(local);Initial Catalog=sample;Integrated Security=True");
con.Open();
SqlCommand cmd = new SqlCommand("sp_userinformation", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@UserName", UserName);
cmd.Parameters.AddWithValue("@Password", Password);
cmd.Parameters.AddWithValue("@FirstName", FirstName);
cmd.Parameters.AddWithValue("@LastName", LastName);
cmd.Parameters.AddWithValue("@Email", Email);
cmd.Parameters.AddWithValue("@PhoneNo", Phoneno);
cmd.Parameters.AddWithValue("@Location", Location);
cmd.Parameters.AddWithValue("@Created_By", Created_By);
cmd.Parameters.Add("@ERROR", SqlDbType.Char, 500);
cmd.Parameters["@ERROR"].Direction = ParameterDirection.Output;
count = cmd.ExecuteNonQuery();
message = (string) cmd.Parameters["@ERROR"].Value;
con.Close();
Page.RegisterStartupScript("UserMsg", "<Script language="'javascript'">alert('" + "The Values are inserted Successfully " + "');</script>")
lblErrorMsg.Text = message;
}

How to use this stored procedure in codebehind file(.cs)….
I have written the code for insert , here how to make this code for update also…
Posted
Updated 10-Mar-13 0:16am
v2

1 solution

u r checking for i for insert and u for update but have to pass value for ur indicator variable also from .cs.U can cach in idicator varible and accordingly ur statement will executed.
add in btnsubmit_Click following code
cmd.Parameters.AddWithValue("@indicator", "I");
for insert
cmd.Parameters.AddWithValue("@indicator", "U");
for update
 
Share this answer
 
Comments
M.Thiyagaraja 10-Mar-13 15:47pm    
Thank u for responding Pallavi Waikar....
At a time either insert nor update alone will happen... During that time how to make a code, from my .cs file kindly help me...
Pallavi Waikar 11-Mar-13 0:28am    
i am not getting ur problem...r u want do insert update record from cs. then simply search on google for "how to insert upadate record in sql server from asp.net c#"

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900