You need to sign in to do that
Don't have an account?

Records dispaly in in randomly in vf page if page refresh
HI All,
I have 20 records in My custom object , I need to diplay records random , no t sam e in order if I refresh the page How can i solve this solution
Hi,
Here is some suggestion:
Integer rand = Math.floor(Math.random() *6).intValue();
list<Account> a=new list<Account>();
a = [SELECT Name FROM Account limit 5 OFFSET :rand];
System.debug('@@@@Account@@@@@'+a);
How can we store the result ?how can we differentiate which is right and wrong?