hi..
First... if you have stored gujrati data to sql server....
then to read you must have gujrati fonts insatlled on that system
if you have installed then just check the below query.. it will get data from database using gujrati lang...
con.Open();
SqlCommand cmd = new SqlCommand("select * table where name like @name+'%' ", con);
cmd.Parameters.AddWithValue("@name", SqlDbType.NVarChar).Value = txt_name.Text; //Texbox name
GridView1.DataSource = cmd.ExecuteReader();
GridView1.DataBind();
con.Close();
you just have to make the datatype Nvarchar then it will display the data as it is stored in sql server.....
it will definaltly solve your problem.......