Hi guys,
i used the query for randomly selecting questions from access but it will give me same result, i try it by passing different different values also passing time in rnd fuction but i will display same result.
DataSet ds = new DataSet();
string strsel = "select * from starttest where stud_id='101301' order by rnd("+ kk +")";
Oda = new OleDbDataAdapter(strsel, Connect.AccConn());
Oda.Fill(ds, "starttest_new");
DataTable dt = ds.Tables[0];
Oda.Update(dt);
dataGridView2.DataSource = dt;
can anybody help me....
Thanks in advance