User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the C# section within the Software Development category of DaniWeb, a massive community of 455,990 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,762 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our C# advertiser: Programming Forums
Views: 1169 | Replies: 2
Reply
Join Date: Nov 2007
Posts: 40
Reputation: raghu.8 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
raghu.8 raghu.8 is offline Offline
Light Poster

how to update profile of login member

  #1  
Dec 6th, 2007
hi jerry thanks for dropdownlist, but i got another problem regarding updatating a profile of a login member, i created a storedprocedure for login information just look at my codding

(Toggle Plain Text)
CREATE PROCEDURE sp_UserValidation
(
@Username varchar(50),
@UserPassword varchar(20)
)
AS
IF EXISTS (SELECT UserName FROM LogIn1 WHERE UserName=@Username and UserPassword=@UserPassword)
BEGIN
return 1
END
ELSE
BEGIN
return 0
END
create table login1(username varchar(50)constraint pkusername primary key,userpassword varchar(20) ,
youranswer varchar(40),username varchar(20), useraddress varchar(100),usercity varchar(20),userpostal int,
userphone int,usermobile int,Email varchar(30),website varchar(30))CREATE PROCEDURE sp_UserValidation
(
@Username varchar(50),
@UserPassword varchar(20)
)
AS
IF EXISTS (SELECT UserName FROM LogIn1 WHERE UserName=@Username and UserPassword=@UserPassword)
BEGIN
return 1
END
ELSE
BEGIN
return 0
END
create table login1(username varchar(50)constraint pkusername primary key,userpassword varchar(20) ,
youranswer varchar(40),username varchar(20), useraddress varchar(100),usercity varchar(20),userpostal int,
userphone int,usermobile int,Email varchar(30),website varchar(30))
my problem is i want to update some of login member column but iam not able to update, i wrote some coding for that just go through that,

(Toggle Plain Text)
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("user id=sa;password=vubrain;database=raghu;data source=vubrain4");
SqlCommand cmd = new SqlCommand();
cmd.Connection = con;
cmd.CommandText = "Update login1001 Set name = @username1001, pwd = @userpassword1001 where username1001= @username1001";
cmd.CommandType = CommandType.Text;
SqlParameter para2;
SqlParameter para3;
SqlParameter para4;
SqlParameter para5;
//SqlParameter para6;
SqlParameter para7;
SqlParameter para8;
SqlParameter para9;
para2 = cmd.@Parameters.AddWithValue("loginaddress", tb1.Text);
para3 = cmd.@Parameters.AddWithValue("logincity", t6.Text);
para4 = cmd.@Parameters.AddWithValue("loginpostalcode", t7.Text);
para5 = cmd.@Parameters.AddWithValue("loginphone", t8.Text);
//para6 = cmd.Parameters.AddWithValue("loginfax", t9.Text);
para7 = cmd.@Parameters.AddWithValue("loginmobile", t10.Text);
para8 = cmd.@Parameters.AddWithValue("loginemail", t11.Text);
para9 = cmd.@Parameters.AddWithValue("loginwebsite", t12.Text);
int intnum;
con.Open();
intnum = cmd.ExecuteNonQuery();
if (intnum > 0)
{
Label2.Text = "updated successfully";

}
else
{
Label2.Text = "updarted failed";
}
con.Close(); protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("user id=sa;password=vubrain;database=raghu;data source=vubrain4");
SqlCommand cmd = new SqlCommand();
cmd.Connection = con;
cmd.CommandText = "Update login1001 Set name = @username1001, pwd = @userpassword1001 where username1001= @username1001";
cmd.CommandType = CommandType.Text;
SqlParameter para2;
SqlParameter para3;
SqlParameter para4;
SqlParameter para5;
//SqlParameter para6;
SqlParameter para7;
SqlParameter para8;
SqlParameter para9;
para2 = cmd.@Parameters.AddWithValue("loginaddress", tb1.Text);
para3 = cmd.@Parameters.AddWithValue("logincity", t6.Text);
para4 = cmd.@Parameters.AddWithValue("loginpostalcode", t7.Text);
para5 = cmd.@Parameters.AddWithValue("loginphone", t8.Text);
//para6 = cmd.Parameters.AddWithValue("loginfax", t9.Text);
para7 = cmd.@Parameters.AddWithValue("loginmobile", t10.Text);
para8 = cmd.@Parameters.AddWithValue("loginemail", t11.Text);
para9 = cmd.@Parameters.AddWithValue("loginwebsite", t12.Text);
int intnum;
con.Open();
intnum = cmd.ExecuteNonQuery();
if (intnum > 0)
{
Label2.Text = "updated successfully";

}
else
{
Label2.Text = "updarted failed";
}
con.Close();
please sought out my problem
thank you
raghu
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Nov 2006
Location: Bonners Ferry, ID
Posts: 280
Reputation: JerryShaw is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 39
JerryShaw JerryShaw is offline Offline
Posting Whiz in Training

Tutorial Re: how to update profile of login member

  #2  
Dec 9th, 2007
raghu,

That SQL statement should have thrown some errors.
I assume you are using Microsoft SQL.
First off, it is typically not a good idea to use commandtext. Instead use stored procedures whenever possible.
Although you are adding parameters to the CMD, because the CMD type is CommandText those parameters
are not going anywhere. Also, you need to format the CommentText properly. Example:
cmd.CommandText = "Update login1001 Set name = @username1001, pwd = @userpassword1001 where username1001= @username1001";
cmd.CommandType = CommandType.Text;

should be rewritten as such:
string m_username = "Whatever this user name is";
string m_pswd = "whatever the password is";
SqlConnection con ... all that jaz...
cmd.CommandText = string.Format("update login1001 set [name]='{0}', pwd='{1}' where username1001='{0}' ",  m_username, m_pswd);
con.open();
try
{
   cmd.ExecuteNonQuery();
   Label2.Text = "updated successfully";
}
catch (Exception eSql)
{
  Label2.Text = "Failed to Update: Error:"+eSql.Message;
}

I prefer to use stored procedures, and the rest of this response is geared towards
that end.

If you want to check to see if these credentials are okay then rewrite your sp_UserValidation like this: (BTW, Never use sp_ as the start of a stored procedure name, because this tells the SQL Plan to first look at the system procs first... waste of time and resources)
create procedure proc_ValidateUser @UserName varchar(50), @UserPassword varchar(20)
AS
   if not exists (select top 1 username from Login1 where username=@UserName and 
     userpassword=@UserPassword)
     raiserror('Invalid User',16,1)
GO

Or you could write it to return a scalar value of 1 or 0. SQL defaults to returning a zero if the procedure executed without any errors.

Now if you really want to update some additional information... and this is also the login check then write a stored procedure like this:
create procedure proc_UserValidation @UserName varchar(50),@UserPassword varchar(20)
   ,@useraddress varchar(100),@usercity varchar(20),@userpostal int
   ,@userphone int,@usermobile int,@Email varchar(30),@website varchar(30)
AS
   if not exists (select top 1 username from Login1 where username=@UserName and userpassword=@UserPassword)
  raiserror('Invalid User',16,1)
else
begin
    update Login1 set useraddress=@useraddress
         ,usercity=@usercity
         ,userpostal = @userpostal
         , userphone = @userphone
         , usermobile = @usermobile
         , email = @email
         , website = @website
    where username = @UserName and userpassword=@UserPassword
end

In C# you want to just perform the Login validation then do this, and write another
stored procedure to handle the update of address, city,etc.
           string m_username = "Whatever this user name is";
           string m_pswd = "whatever the password is";

            SqlConnection conn = new SqlConnection("userid=sa;password=vubrain;database=raghu;data source=vubrain4");

            SqlCommand cmd = new SqlCommand("proc_ValidateUser", con);
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Parameters.AddWithValue("@UserName", m_uername);
            cmd.Parameters.AddWithValue("@UserPassword", m_pswd);

            con.Open();
            try
            {
                cmd.ExecuteNonQuery();
                Label2.Text = "Login successfully";
            }
            catch (Exception eSql)
            {
                Label2.Text = "Login Failed with: " +eSql.Message;
            }
            con.Close();


Hope that Helps,
Jerry
Reply With Quote  
Join Date: Nov 2007
Posts: 40
Reputation: raghu.8 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
raghu.8 raghu.8 is offline Offline
Light Poster

Re: how to update profile of login member

  #3  
Dec 11th, 2007
hi jerry, thanks for your codding i will try this
thank you
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb C# Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the C# Forum

All times are GMT -4. The time now is 9:33 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC