i make quiz application not generate question randomaly .
not generate NEXT click to next question retrive same question.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Imtiyaz AnsariPosted Nov 2, 2015, 8:58 AM
private static double RandomNumberBetween(double minValue, double maxValue)
{
var next = random.NextDouble();
return minValue + (next * (maxValue - minValue));
}
maniyar mustafaPosted Nov 2, 2015, 7:28 AM
I retrieve data from table but not all question are retrieve and store into database
Imtiyaz AnsariPosted Oct 28, 2015, 2:43 PM