Search Results

3
votes

How do I select top 10 rows in a table without sorting?

if random order is needed, you can try select top 10 * from [tablename] order by newid() …
0
votes

How can I toggle a list based on a radio button with asp.net mvc?

I'll respond following the flow of my understanding: Suppose I have a list of tickets. When the user first goes to the tickets/index page I want to show all the open tickets …