hello,
can anyone tell me how to randomly pick entries from a database using ASP.NET as front end and SQL SERVER as backend ?
i have written
select * from table order by rand();
but instead of picking entries randomly, it simply displays the entries in the same order as they are stored in the database..
thanks alot.