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
anthony graves
NA
8
3.2k
PASSING PARAMETERS BACK USING C#
May 8 2015 1:55 PM
I'm saving data to database with save button. how do i re-enter another users info the that info is saved/
SqlDataAdapter da = new SqlDataAdapter();
da.InsertCommand = new SqlCommand("RICI_PersonalInfo_SavePage_Test", MyConnection2);
da.InsertCommand.CommandType = CommandType.StoredProcedure;
da.InsertCommand.Parameters.AddWithValue("@SSN", txtSSN.Text);
da.InsertCommand.Parameters.AddWithValue("@FileDate", txtFileDate.Text);
da.InsertCommand.Parameters.AddWithValue("@SequenceID",SqlDbType.Char).Value = txtSequenceID.Text;
da.InsertCommand.Parameters.Add("@Name", SqlDbType.VarChar).Value = Session["Name"].ToString();
da.InsertCommand.Parameters.Add("@BirthDate",SqlDbType.VarChar).Value = txtBxDOB.Text;
da.InsertCommand.Parameters.Add("@Gender", SqlDbType.VarChar).Value = RadioButtonListGender.Text;
da.InsertCommand.Parameters.Add("@Citizen", SqlDbType.VarChar).Value = RadioButtonListCitizen.Text;
Reply
Answers (
1
)
Importing Excel data to SQL
Asp.net application hangs frequently