Browse by Tags

All Tags » .Net (RSS)
A while back I created a little utility to upload files to MediaFire which is a file hosting service. MediaFire supports uploading of files up to 100 MB in a free account with unlimited storage, and is in my opinion one of the best free online storage...
Introduction What is MVC MVC stands for: Model (database) Controller (business logic) View (what you see + view logic) It is used to separate the logic from a web application and other types of applications into these 3 logical parts. There are a lot...
In my opinion the future of games and other interfaces will be one where motion detection will be a key element. What we are seeing at the moment is that the Nintendo WII is outselling the competition, why is this? Well for one it makes for quite a good...
One of my favorite productivity tools has been open sourced :) It has been placed on source forge with a BSD style license which means you can use it in open source, non profit and for profit applications. The project can be found here . ---- More information...
SubSonic Vs dOOdads Vs ActiveRecord Let's meet our contenders: dOOdads An ORM framework which was provided by the people who also gave us MyGeneration . It's built with a couple of things in mind: - Ease of use - Supporting a large amount of DBMS systems...
String.Format is a nifty little tool I use a lot in development. I'm wondering if anyone has made a function yet to reverse it and I'm wondering what the cool implementations other people can come up with. What do I mean by reversing it ? I mean extracting...
An article by Steve Yegge who I actually didn't know until he was included in a question session with some of the big names in the software industry a while back. A very good writer, anyway the article: http://steve-yegge.blogspot.com/2006/09/good-agile...
Watch this and be blown away as well: http://www.wekeroad.com/actionpackintro.html A DAL which creates classes for Stored procedures, tables etc. And all that is needed to set it up is a * in a file. Home of this DAL layer: http://www.codeplex.com/Wiki...
When looking at the following code: StringBuilder first = new StringBuilder(); StringBuilder second = first; first.Append ( "hello" ); first = null ; Console.WriteLine (second); What would you think the output would be ? If it is anything other then:...
3 comment(s)
Filed under: , ,
Information_schema is a part of the information stored in the database and is the preferred gateway to this information. It's a sql 92 standard, which means that it's supposed to be standard but every database is bound to have it's own implementation...
4 comment(s)
Filed under: ,
Discusses common errors about: Caching and forms authentication View state and session state Profile property serialization Thread pool saturation Impersonation and profiling Keep Sites Running Smoothly By Avoiding These 10 Common ASP.NET Pitfalls
I've known for some time now that it's possible to use Ado.Net to read from Excel files, I didn't know it was also possible to write to them. At least I have found a workaround by using SQL server and registering Excel files as an external resource. Reading...
I'm hearing some people think: Ok cool that Ruby is happening and all that but we are a DotNet Community site. Very true, but there are quite a few links to the DotNet world going on and developing at quite a nice speed. The bridges available now are...
Microsoft says that, from now on, ActiveX control activation will require that, "when a web page uses the APPLET, EMBED, or OBJECT elements to load an ActiveX control, the control's user interface is blocked until the user activates it. If a page...
In-Place Editing with Atlas Behaviors This post demonstrates a custom Atlas script component and associated extender control to enable in-place editing (i.e., Labels that morph into TextBoxes upon focus in an AJAXish manner). Source code included... http...
More Posts Next page »