I have this Insert Statement code in C# window application....
String MyString = @"INSERT INTO tblUsers(userID, Name, Position) VALUES('a','b','c')";
how if I would like to give values from a textbox:
//Please correct this code because it is not working....
String MyString = @"INSERT INTO tblUsers(userID, Name, Position) VALUES('"txId"','"txtUser"','"txtPosition"')";
I need answer ASAP
THANK YOU for time!....