Posts

Understand the usage of HTTP status code 401 vs. 403 vs. 404

When I tried to understand the actual scenario of these HTTP status code. I got this article with some valid example. Handling Forbidden RESTful Requests: 401 vs. 403 vs. 404

Understanding of garbage collection in net

http://www.csharpque.com/2013/05/understanding-garbage-collection-in-net.html

Uploading and returning files in an ASP.NET MVC

Uploading and returning files in an ASP.NET MVC application is very simple. I found very simple article. Uploading and returning files

backbone-js tutorial collection

understanding-backbone-js-simple-example

Top 10 Web Application Penetration Testing Tools

Well this is not quite a default top ten list (based on witch one is the smarter/faster/better) but just a simple list of applications you can use in a pentest. Free and open source app come first. Source

Implementing Solutions that Leverage Microsoft Sync Framework to Provide Synchronization

Microsoft Sync Framework to Provide Synchronization Video

asp file upload error

Recently I struggled for file upload in asp web site. I did some fix but in beginning I am not able to understand the reason. After going through this below line, I am able to understand the reason Q1. I want to let my users specify the destination directory to which the files will be uploaded. I included &ltINPUT TYPE="TEXT" NAME="PATH"&gt in the form, and my upload script looks like this: . However this does not seem to work. A. You cannot use the Form collection before calling Save because it is not yet populated. The right way to do it is to upload the files to a temporary directory and then copy or move them to the specified destination directory as follows: n = Upload.Save "c:\upload" For Each File in Upload.Files File.Copy Upload.Form("Path") & "\" & File.ExtractFileName Next %> I got hint from aspupload site. www.aspupload.com/faq