int stock = 0;
stock = Convert.ToInt32(dr["arabic"].ToString());
Note: "arabic" its from database table in arabic
How can solve this I am using arabic tables in my database
int stock = 0;
stock = Convert.ToInt32(dr["arabic"].ToString());
Note: "arabic" its from database table in arabic
How can solve this I am using arabic tables in my database
Comments
Post a Comment