I am working on a C# project. I have created a dataset by use of sql server and I tried to show the data in DataGridView table. Then I added a button to change the selected data. when I use English language for editing the data, it works perfectly. But when I change the language, question mark is shown.
to edit the data I use the following commands.
sqlStr = "Update Employee Set FirstName = '" + FirstName.Text + "' Where ID = '" + ID.Text + "'";
cmd.CommandText = sqlStr;
cmd.Connection = connect;
cmd.ExecuteNonQuery();
any help is appreciated. thanks