TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
sheetal
NA
3
0
Updating Values entered by User in form to database
Jun 19 2009 6:02 AM
Hi all,
I am trying to create an application which involves the User to change the password. I am using Microsoft Visual Studio for developing the Graphical User Interface and Microsoft SQL server as the back-end.
I have created a separate form which allows the user to change the password. However I am unaware of how the particular password will be updated to the Database.
I have tried the following code for updating the new password to the database but it is not working. There is no error in the code when compiling and running but the password is not updated in the database.
Coding:
UserID = txtUserID.Text;
try
{
SqlCommand objSqlCommand = new SqlCommand("update NewUserRegister set Password = @Password where UserID = @UserID",objSqlConnection);
SqlParameter sql;
sql = objSqlCommand.Parameters.Add("@UserID", SqlDbType.Int);
sql.Value = UserID;
MessageBox.Show("Password Updated Successfully");
}
catch (SqlException e1)
{
MessageBox.Show(e1.Message, "Error Information", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
catch(System.Exception e2)
{
MessageBox.Show(e2.Message, "Error Information", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
Can any one help me out with the correct code snippet I should use to update the password?
I am in urgent need of completing this task. Please reply me soon..
Thanks in advance!!
Reply
Answers (
1
)
Problem when loop thru dataset.
cannot locate .xbap file