Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.71K
~232 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for tom_289

[code]cmd = new SqlCommand(); da = new SqlDataAdapter(); da.InsertCommand = cmd; da.InsertCommand.Parameters.Add("@AdminID", SqlDbType.VarChar).Value = textBox1.Text; da.InsertCommand.Parameters.Add("@FirstName", SqlDbType.VarChar).Value = textBox2.Text; da.InsertCommand.Parameters.Add("@MiddleName", SqlDbType.VarChar).Value = textBox3.Text; da.InsertCommand.Parameters.Add("@LastName", SqlDbType.VarChar).Value = textBox4.Text; da.InsertCommand.Parameters.Add("@Address", SqlDbType.VarChar).Value = textBox6.Text; da.InsertCommand.Parameters.Add("@BirthDate", SqlDbType.DateTime).Value = textBox7.Text; da.InsertCommand.Parameters.Add("@ParentName", SqlDbType.VarChar).Value = textBox8.Text; da.InsertCommand.Parameters.Add("@PhoneNumber", SqlDbType.VarChar).Value = textBox9.Text; da.InsertCommand.Parameters.Add("@ParentProfession", SqlDbType.VarChar).Value = textBox10.Text; da.InsertCommand.Parameters.Add("@ParentDesignation", SqlDbType.VarChar).Value = …

Member Avatar for jignesh kaila
0
232

The End.