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()
…
1
vote
Is there an ASP.Net MVC view engine that supports JavaScript views?
You don't necessarily need view engine for that, just return plain text result.
Here is a controller (MonoRail) I've used to render some user culture settings in a javascript object:
…
0
votes
Is there an easy method to read an external web page’s source code? ASP.NET
You can look at System.Net.WebRequest class and the sample
But please, don't make such cr …
