Hi
I am facing question mark in my Arabic texts since i insert the data in table as well Hebrew , the below code is to insert data inside the table should i add anything inside the Insert statement?!
protected void addadsbtn_Click(object sender, EventArgs e)
{
var user = Session["UsrNme"];
if (SubCatedrdoads.SelectedValue != "Cars")
{
//If so then show the panel
carpanel.Visible = true;
}
else
{
//If not then hide the panel
carpanel.Visible = false;
}
Guid newGUID = Guid.NewGuid();
SqlConnection cn = new SqlConnection(sc);
SqlCommand cmd = new SqlCommand();
string sqlstatment = "INSERT INTO [ads] ([Section], [Category], [UID], [AdsTit], [AdsD ...
Go to the complete details ...