Search Results

1
vote

What is the best data access paradigm for scalability?

Use whatever works for you. These are all easiest to set up if you already have a fairly normalized database (ie, good definition of primary keys and foreign keys). However, if you've got data that …
2
votes

How to stream a pdf as binary to the browser using .NET 2.0

Set Content-Type: Response.ContentType = "application/pdf" Set ContentDisposition, if you want to give a new name for the file: Response.Headers.Add("Content-Disposition", "attacheme …
6
votes

How fast is LINQ?

It depends on what you're trying to do. LINQ has been very fast for me to pull data from the database, but LINQ-to-SQL does directly translate your request to SQL to run it. However, there are ti …
3
votes

Software protection by encryption

And this is why Copy Protection and 'keeping honest users honest' is a losing battle. You don't need to keep honest users honest, they already are. The majority of effective Copy Protecti …
1
vote

Is Silverlight Secure?

Whatever mechanism you provide to communicate between the client and your server is potentially hackable. Even if you use SSL, a user can perform a man-in-the-middle attack (the security is handled …
1
vote

Is there a .Net equivalent to Apache Hadoop?

Recently, MySpace released their .NET MapReduce framework, Qizmt, as Open Source, so this is also a potential contender in this space. …