Tag Archives: ASP.Net

Upload multiple files using Silverlight

Early this year I wrote a post about creating a File Uploader using Silverlight and WCF. And today I got a question from one forum, about to create uploader for multiple files. And here is source code, I am just … Continue reading

Posted in .Net, .Net 3.0 / 3.5, Silverlight, WCF | Tagged , , , , , , | Leave a comment

How to get stack trace programmatically in C#

Stack information is very helpful to debug programs; this snippet will help to get stack trace. This is using System.Diagnostics namespace. Happy Debugging

Posted in .Net, .Net 3.0 / 3.5, ASP.Net | Tagged , , , | Leave a comment

ASP.NET MVC 3 RTM Released

The ASP.NET team has released RTM version of ASP.NET MVC 3. You can download the ASP.NET MVC 3 RTM from here. Microsoft has released the following products along with ASP.NET MVC 3. You can find the source code of ASP.NET … Continue reading

Posted in .Net, .Net 4.0, ASP.Net MVC | Tagged , , | Leave a comment

How to upload file using HttpWebRequest class

If you are developing applications to communicate with HTTP Rest based APIs you may require to upload files using HttpWebRequest class. One of the best example is TwitPic.com API; this site allows you to host images using Twitter credentials. You … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, Windows Forms | Tagged , , , , | 6 Comments

Raven DB – Introduction

Few days’ back I got introduced to some new database, called RavenDB. Unlike relational databases, its document based database. Document-based databases do not store data in tables with uniform sized fields for each record. Instead, each record is stored as … Continue reading

Posted in .Net, .Net 3.0 / 3.5, .Net 4.0, Windows Forms | Tagged , , , , | Leave a comment