hi
I am try to insert data from TextBox to db using TableAdapter, when i insert Arabic language in TextBox and send it to DB it looks like this "????????" what does that means? how can i solve this problem?
When i insert English words it works fine
this is my Code :
if (!UserNameTextBox.Text.Trim().Equals(""))
{
errorProvider1.Clear();
if (!PasswordTextBox.Text.Trim().Equals(""))
{
errorProvider2.Clear();
if (!RePasswordTextBox.Text.Trim().Equals(""))
{
errorProvider3.Clear();
try
{
this.selectUserTableAdapter1.Fill(landsDataSet1.SelectUser, UserNameTextBox.Text.Trim());
if (landsDataSet1.SelectUser.Rows.Count > 0)
{
errorProvider1.SetError(UserNameTextBox, "إسم المستخدم المدخل مستعمل من قبل الرجاء إختيار إسم أخر");
return;
}
else
{
if (PasswordTextBox.Text.Trim().Equals(RePasswordTextBox.Text.Trim()))
{
this.insertUserTableAdapter1.Fill(landsDataSet1.InsertUser, UserNameTextBox.Text.Trim(), PasswordTextBox.Text.Trim());
AlertLabel.ForeColor = Color.Green;
AlertLabel.Text = "لقد تم إضافة مستخدم جديد ";
ResetFields();
}
else
{
errorProvider2.SetError(PasswordTextBox, "كلمة المرور والإعادة غير متساويتين الرجاء التأكد من كلمة المرور");
errorProvider3.SetError(RePasswordTextBox, "كلمة المرور والإعادة غير متساويتين الرجاء التأكد من كلمة المرور");
}
}
}
catch (Exception exc)
{
throw new ArgumentException(exc.Message);
}
}
else
{
errorProvider3.SetError(RePasswordTextBox, "الرجاء إعادة كلمة المرور");
}
}
else
{
errorProvider2.SetError(PasswordTextBox, "الرجاء إدخال كلمة المرور");
}
}
else
{
errorProvider1.SetError(UserNameTextBox, "الرجاء إدخال إسم المستخدم");
}