Upload Files with Your Browser in 2 Lines of Code

By Peter Persits

Copyright (c) 1998 Persits Software, Inc.

Introduction

File uploading is the process of sending an arbitrary file from a client machine to the server. The easiest and most convenient way to upload a file is to use an RFC1867-enabled browser such as Microsoft Internet Explorer 4.0+, Netscape 3.0+, or Internet Explorer 3.0 with the upload add-on. Browser-based uploading is performed via an HTML form with the attribute ENCTYPE="multipart/form-data". This form must also contain one or more <INPUT TYPE=FILE> items with which the user specifies local files to be uploaded.

The data posted by a form with the ENCTYPE="multipart/form-data" attribute must be parsed by a server-side process to extract the uploaded files and other non-file items. In the ASP environment, this task is best performed with a compiled active server component such as AspUpload from Persits Software, Inc (http://www.persits.com).

All samples in this article assume that AspUpload is installed on your system. Download your free evaluation copy of AspUpload from http://www.persits.com/aspupload.html. Unzip the archive file, put AspUpload.dll in any directory and at the MS DOS prompt execute the command

regsvr32 c:\dir\AspUpload.dll

Getting Started

Let's create a simple HTML form that will let us upload up to three files, and a script to handle the uploading.
This is out  first HTML file Test1.htm:

<HTML>
<BODY BGCOLOR="#FFFFFF">

<FORM METHOD="POST" ENCTYPE="multipart/form-data" ACTION="UploadScript1.asp">
<INPUT TYPE=FILE SIZE=60 NAME="FILE1"><BR>
<INPUT TYPE=FILE SIZE=60 NAME="FILE2"><BR>
<INPUT TYPE=FILE SIZE=60 NAME="FILE3"><BR>
<INPUT TYPE=SUBMIT VALUE="Upload!">
</FORM>
</BODY>
</HTML>

Each <INPUT TYPE=FILE> item appears on the browser as a text input box with the button "Browse..." next to it. If you don't see the Browse button it most probably means that your browser does not support file uploading.

Here is the corresponding uploading script UploadScript1.asp:
 

<HTML> 
<BODY> 
<% 
Set Upload = Server.CreateObject("Persits.Upload.1") 
Count = Upload.Save("c:\upload")
%>

<% = Count %> files uploaded. 
</BODY> 
</HTML>

The first line of the ASP script simply creates an instance of the AspUpload object. The second line calls the Save method of the component which actually does the job: it parses the posting received from the browser, figures out how many files are being uploaded, and saves then in the specified directory on the server. The directory name may or may not be backslash terminated. All the files will be saved in that directory under their original names. We will see how to change any or all the file names shortly.

The Save method returns the number of files successfully uploaded. In case of an error this method will throw an exception.

Notice that you can use any or all of the three input boxes on our form. AspUpload is smart enough to figure out which input boxes are used and which are not
 

Using FILES and FORM Collections to Access Individual Form Items

Let's take a look at our second set of samples:

Test2.htm
<HTML>
<BODY BGCOLOR="#FFFFFF">

<FORM METHOD="POST" ENCTYPE="multipart/form-data" ACTION="UploadScript2.asp">
File 1:<INPUT TYPE=FILE NAME="FILE1">
Description 1:<INPUT TYPE=TEXT NAME="DESCR1"><BR>

File 2:<INPUT TYPE=FILE NAME="FILE2">
Description 2:<INPUT TYPE=TEXT NAME="DESCR2"><BR>

<INPUT TYPE=SUBMIT VALUE="Upload!">

</FORM>
</BODY>
</HTML>
 
UploadScript2.asp
<HTML> 
<BODY> 
<% 
Set Upload = Server.CreateObject("Persits.Upload.1") 
Upload.Save "c:\upload"
%> 
Files:<BR> 
<% 
For Each File in Upload.Files 
Response.Write File.Name & "=" & File.Path & " (" & File.Size & ")<BR>"
Next
%> 

<P> 
Other items:<BR> 
<% 
For Each Item in Upload.Form 
Response.Write Item.Name & "=" & Item.Value & "<BR>"
Next
%> 
</BODY> 
</HTML>

Notice that our HTML form now has two kinds of input boxes, TYPE=FILE and TYPE=TEXT. Because of the ENCTYPE attribute of out form, we can no longer access the form variables via the standard ASP Response.Form collection. That's where the Upload.Form collection comes to the rescue. This collection is virtually identical to Response.Form, i.e. we can access its elements via integer or string indexes, for example:

Set Item1 = Upload.Form("DESCR1")

or

Set Item1 = Upload.Form(1).

We can also scroll through the items in the collection using the For-Each statement as shown in the code sample above. The Form collection contains objects of the type FormItem which only have two string properties, Name and Value (default property).

It's important to remember that the Upload.Form collection only includes non-file items, i.e. form items other than <INPUT TYPE=FILE>. AspUpload provides another collection, namely Files, to contain objects of the type UploadedFile which represent uploaded files that came from the <INPUT TYPE=FILE> items. Much like the Form collection, the Files collection items can be accessed using string or integer indexed, or via a For-Each statement, as shown in the example above.

After running Example 2, we will see something like this:

Files:
FILE1=c:\upload\File1.xls (108544)
FILE2=c:\upload\File2.zip (211687)

Other items:
DESCR1=bla bla
DESCR2=test test

Notice that we have obtained the destination paths and sizes of the uploaded files via the Path and Size properties of the UploadedFile object, respectively.

If our form only contained 1 file input box, say <INPUT TYPE=FILE NAME="ONLYFILE">, there would be no need to use a For-Each statement. We could simply say

Response.Write Upload.Files("ONLYFILE").Path

or, more generally,

Response.Write Upload.Files(1).Path

IMPORTANT: Neither the Files nor Form collections are populated until the Save method is called. It is therefore incorrect to refer to either of these collections before calling Upload.Save.

' Incorrect!
Upload.Save( Upload.Form("Path") )

Setting a Limit on File Size

Suppose you need to limit the size of the files being uploaded to prevent the congestion of your server's disk space. All you need to do is call the SetMaxSize method on your Upload object just before calling Save:

Set Upload = Server.CreateObject("Persits.Upload.1")
Upload.SetMaxSize 50000, False
Upload.Save "c:\upload"

In this example we are limiting the size of the uploaded files to 50000 bytes. The optional second parameter specifies whether a file bigger than the maximum should be truncated (if set to False or omitted), or rejected with an error exception (if set to True).
 

Forcing Unique File Names

By default, AspUpload will overwrite existing files in the upload directory. If this is undesirable, the component can be configured to generate unique names for the files being uploaded to prevent overwriting existing files in the upload directory. This is done by setting UploadManager's OverwriteFiles property to False before calling Save:

Upload.OverwriteFiles = False

This property is True by default.

To prevent name collisions, AspUpload will append the original file name with an integer number in parentheses. For example, if the file MyFile.txt already exists in the upload directory, and another file with the same name is being uploaded, AspUpload will save the new file under the name MyFile(1).txt. If we upload more copies of MyFile.txt, they will be saved under the names MyFile(2).txt, MyFile(3).txt, etc.
 

Moving, Copying and Deleting Files

The UploadedFile object provides methods that enable you to move, copy or delete uploaded files. These methods are

file.Move( NewName As String )
file.Copy( NewLocation As String, Optional Overwrite)
file.Delete

Depending on the NewName argument, the Move method will either move the file to another directory or rename it. Suppose the file abc.txt has been uploaded to the directory c:\Upload. Then the call

file.Move "c:\WINNT\abc.txt" will move the file to the directory c:\WINNT, whereas the call
file.Move "c:\Upload\xyz.txt" will simply rename the file.

It's important to know that the Move method has a side effect: once this method is successfully called, the Path property of this file object will point to the new location/name.

The Copy method copies the file to a new location/name. NewLocation must be a fully qualified path. The Overwrite parameter, if set to True or omitted, instructs the Copy method to overwrite an existing file at the new location. If set to False, it will cause the method to fail should a file at the new location already exist. Unlike Move, this method does not affect the Path property.

You may choose to use the Delete method if, for example, you are saving the file in the database as a blob and no longer need it in your upload directory. Saving files in the database is our next topic.
 

Saving Files in the Database as Blobs

Many database management systems like MS Access or SQL Server will let you store arbitrary files as "binary large objects" (BLOBs). An MS Access table can store binary files in data fields of the type OLE Object. In SQL Server, the corresponding data type is called IMAGE. The stored files can later be retrieved for downloading or displaying using ADO.

AspUpload allows you to save uploaded files in the database in as little as 1 line of code! Let's look at our third set of sample files. The file Test3.htm is almost identical to Test1.htm, so we won't show it here. The file UploadScript4.asp does deserve our attention:
 
 

<HTML> 
<BODY> 

<% 
Set Upload = Server.CreateObject("Persits.Upload.1") 
Upload.Save "c:\upload" 
On Error Resume Next 
For Each File in Upload.Files 

File.ToDatabase "DSN=data;UID=sa;PWD=xxx;", "insert into Blobs(id, Path, BigBlob) values(12, '" & File.Path & "', ?)"
if Err <> 0 Then 
Response.Write "Error saving the file: " & Err.Description
Else 
File.Delete 
Response.Write "Success!"
End If

Next
%> 
</BODY> 
</HTML>

The line

On Error Resume Next

instructs ASP not to display error messages when exceptions occur, but to store the exception codes and description in the built-in Err object instead and continue the execution of the script.

The next line

File.ToDatabase "DSN=data;UID=sa;PWD=xxx;", "insert into Blobs(id, Path, BigBlob) values(12, '" & File.Path & "', ?)"

is all it takes to save a file in the database. Let's examine the two arguments of this method:

The first argument is an ODBC connection string in the following format:

"DSN=datasource;UID=userid;PWD=password;<other optional parameters>"

The second argument is an SQL INSERT or UPDATE statement with one and only one question mark sign (?) which serves as a place holder for the file being saved. In this example, our underlying database table Blobs consists of three columns: an integer ID, a VARCHAR Path, and an IMAGE BigBlob. This SQL INSERT statement puts a 12 into the ID column, file path into the Path column and the actual file into the BigBlob column.

The next line checks if the statement right before it executed successfully. If it did the Err object is 0 and the file will be deleted (line File.Delete) since it is now saved in a database table and no longer needed in the upload directory. Otherwise, Err contains a numeric error code, and Err.Description contains the verbal description of the exception.

It is not uncommon to store GIF and JPEG images in a database table. To retrieve an image from the table and display it on an HTML page, you don't need to use any third-party component. ADO will do the job for you.

Put a regular <IMG> tag on your HTML page with the SRC attribute pointing to an ASP script, e.g.

<IMG SRC="GetImage.asp?id=4">

The GetImage.asp script may look like this:

<%
Set db = Server.CreateObject("ADODB.Connection")
db.Open "data"
Set rs =db.Execute("SELECT BigBlob FROM Blobs where id = " & Request("id") )
Response.ContentType = "image/jpeg" '(or "image/gif")
Response.BinaryWrite rs("BigBlob")
%>


Where To Get More Info on AspUpload

For the complete AspUpload documentation, and to download your free evaluation copy, please visit the Persits Software web site at http://www.persits.com/aspupload.html. The registration fee for this component is $99.00 (single CPU license).

Frequently Asked Questions

Q:  Will AspUpload work with any version of ASP?
A:  No. Early versions of the ASP's Request object did not provide the BinaryRead or TotalBytes methods which the component heavily relies on. The best way to test whether your version of ASP allow uploading is to execute simple script like <% n = Request.TotalBytes %> and see if the method is recognized by your ASP module.

Q:  Where can I get the latest version of ASP?
A: It depends on the type and version of your web server. If you are using PWS or IIS 3.0 you can download the latest version of ASP from http://www.microsoft.com/office/intranet/modules/asp411s3.asp.
If you are using IIS 4.0 you may need to install Option Pack 4 downloadable from http://www.microsoft.com/iis.

Q:  Does Microsoft Internet Explorer 3.0 support file uploading?
A:  By default, no. But there is an IE3 upload add-on available from http://www.microsoft.com/msdownload/iebuild/ie3add_win32/en/ie3add_win32.htm.
 

About the Author

Peter Persits is the founder and president of Persits Software, Inc., the maker of the popular ASP components AspNTUser, AspGrid, AspAccessControl, AspUpload and AspEmail. Peter has been developing software for over 10 years. He holds a Master's degree in Computer Science from American University (Washington, DC) and is a Microsoft Certified Solution Developer. He currently lives in Arlington, VA.

About the Author

From ASP101

Articles originally posted on ASP101.com

IT Offers

Comments

  • http://www.chanluustoreonline.com/

    Posted by chan luu sale on 04/04/2013 07:21pm

    I had a good day, and found for the first time that I was able to run as hard as I can with the fastest people in the world and cheap coach purses finish well. This bag is a special favorite of hers (and mine) chan luu sale- we've seen her moseying about town with her coach outlet store in tow before. Shoes, duh. It's time to put your winter boots back into storage and start shopping for open toe shoes (we understand if you need to give your feet some serious love first). Last week we brought you a cozy preview of ilovechanluu Fall 2013 Act 1 bags, and this week we are following up with the rest of the coach purses outlet and chan luu bracelet that caught our eyes.The come with a new version , the chan luu necklace Dynamic Flywire that is even more lightweight and comfortable. Not only will it keep you comfortable all day long, but you'll look great wear it. chan luu at ShopStyle from the anticipated line will help educate the 200-300 http://www.usitccoachpurses.com girls that are enrolled in the coach outlet store that opened last November, with plans to open more coach purses in the near future.

    Reply
  • wholesale fitted hats

    Posted by xxds5jc on 04/01/2013 06:07am

    [url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping k mqcv [url=http://bestbaseballcap.webs.com]wholesale snapback caps[/url] wholesale snapback caps z vavs[url=http://wholesalefittedhat.webs.com]snapback wholesale[/url] snapback wholesale a cnwh[url=http://wholesalefittedhat.webs.com]snapbacks wholesale[/url] snapbacks wholesale a ygui[url=http://cheapsnapbackshat.webs.com]cheap hats online[/url] cheap hats online n nzbj[url=http://cheapsnapbacksforsalezone.webs.com]snapback hats cheap[/url] snapback hats cheap t kdby [url=http://wholesalefittedhat.webs.com]snapbacks wholesale[/url] snapbacks wholesale h jevm [url=http://snapbackhatwholesale.webs.com]snapback hats wholesale[/url] snapback hats wholesale y ooip[url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping e cybm[url=http://snapbackhatwholesale.webs.com]snapback hats wholesale[/url] snapback hats wholesale i slsu[url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap h ermh[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats a vzzl [url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap j prth [url=http://bestbaseballcap.webs.com]wholesale baseball caps[/url] wholesale baseball caps o qciv[url=http://snapbackswholesalezone.webs.com]hats wholesale[/url] hats wholesale a spui[url=http://bestbaseballcap.webs.com]wholesale baseball caps[/url] wholesale baseball caps u vsrl[url=http://snapbackhatwholesale.webs.com]snapback hats wholesale[/url] snapback hats wholesale z czzi[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats h guci

    Reply
  • cheap snapbacks online

    Posted by xxds7lt on 04/01/2013 05:58am

    [url=http://wholesalefittedhat.webs.com]snapback wholesale[/url] snapback wholesale f tmwd [url=http://snapbackhatwholesale.webs.com]wholesale snapbacks[/url] wholesale snapbacks u olgw[url=http://bestbaseballcap.webs.com]wholesale snapback caps[/url] wholesale snapback caps x znwa[url=http://cheaphatsmall.webs.com]snapbacks for cheap[/url] snapbacks for cheap c iliy[url=http://cheapsnapbackshat.webs.com]cheap hats online[/url] cheap hats online t wnnp[url=http://cheapsnapbackshat.webs.com]cheap hats for sale[/url] cheap hats for sale x pxgf [url=http://bestbaseballcap.webs.com]hats wholesale[/url] hats wholesale k qpxk [url=http://cheapsnapbacksforsalezone.webs.com]snapback hats cheap[/url] snapback hats cheap s ahrs[url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks[/url] cheap snapbacks a jjsc[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats k fbkg[url=http://cheaphatsmall.webs.com]cheap snapbacks[/url] cheap snapbacks l tdma[url=http://wholesalefittedhat.webs.com]snapbacks wholesale[/url] snapbacks wholesale e zhbw [url=http://cheapsnapbackshat.webs.com]cheap snapbacks online[/url] cheap snapbacks online c rmwo [url=http://cheaphatsmall.webs.com]cheap hats[/url] cheap hats e lfbc[url=http://bestbaseballcap.webs.com]hats wholesale[/url] hats wholesale t qync[url=http://snapbackhatwholesale.webs.com]wholesale beanies[/url] wholesale beanies x qoob[url=http://cheapsnapbackshat.webs.com]cheap snapbacks hats[/url] cheap snapbacks hats t hnhb[url=http://wholesalefittedhat.webs.com]fitted hats wholesale[/url] fitted hats wholesale q klme

    Reply
  • http://www.nikeairmaxwr.com/ gtvatr

    Posted by http://www.nikeairmaxwr.com/ Suttoncjk on 03/31/2013 11:51am

    Original inside an exquisite eye-catching ring gold, and the style of different morphological each one, only the same point that women have enough lethal enough captive every beauty-conscious women in mind. The eyes there three horny these beautiful rings captives shy Cher, Fifi or naive enthusiasm Suigetsu's eyes are focused on the box in the hands of Xiao Feng, looked inside exquisite beauty shining mysterious light The ring ray ban new wayfarer Yang Jing at this time are consistent flashing gleaming luster, Xiao Feng are like from ray ban prescription glasses eyes see countless stars emerge. Xiao Feng smiled and said discount oakley sunglasses. The three women and a voice said.oakley sunglasses sale, Xiao Feng smiled and replied.ray ban, Master my pleasure. Thank you master it! Three women and then immediately grabbed the box, the appreciation of and countersink a ring to some.

    Reply
  • cheap snapbacks from china

    Posted by vkexpenueMoxjef on 03/29/2013 11:16pm

    [url=http://www.bestcheapsnapbacks.com]cheap snapbacks[/url]cheap snapbacks [url=http://www.bestcheapsnapbacks.com]cheap snapbacks for sale[/url]cheap snapbacks for sale [url=http://www.bestwholesalehats.com]wholesale snapback hats[/url]cheap snapbacks [url=http://www.bestwholesalehats.com]snapback hats wholesale[/url]cheap snapbacks from china [url=http://www.bestcheapsnapbacks.com]cheap snapbacks[/url]cheap oakley

    Reply
  • cheap ray ban wayfarer

    Posted by ggliliImpumpppo on 03/29/2013 09:29am

    http://wholesalesunglassescool.webs.com - sunglasses wholesale oakley discount http://akeoakleysunglasses.webs.com - fake ray ban wayfarer cheap oakley frogskins http://guccisunglassescheap.webs.com - cheap ray ban cheap fake oakley sunglasses http://onlineguciisunglass.webs.com - sunglasses cheap discount sunglasses http://guccicheapsunglass.webs.com - cheap oakleys cheap sunglasses online

    Reply
  • http://www.oakleysunglassesoutc.com/ ykfahg

    Posted by http://www.oakleysunglassesoutc.com/ Mandyaej on 03/29/2013 05:43am

    ghd hair straightener trained to qualified military talent. Future after returning to better serve the nation! Tan Yankai then deliberately national word rather than the country, now the Qing Dynasty still peacefulness, but the whole country of people know the Empress Dowager Cixi brazenly misappropriated treasury to the preparation of the sixtieth birthday. Days against anyone that has begun to provoke anger, and the rest on the other the Sino-Japanese war suffered a crushing defeat, and contradictions burst out of it. No way, Tan Yankai now impossible to make their own revolution, the foundation and identity of the ghd himself embarked on Revolutionary Road, at the same time ghd straightener need to land a basis of solidarity. In this case ghd sale not only can not give these people instill revolutionary ideas, but to guard against the infiltration of this idea on the basis of ghd hair straightener. In contrast ghd straightener more reluctant when the Manchu descendents, the rest only take the national route, more people, especially in Xiao Xuan three were Zhezhi miniature military forces to unite to the national cause.

    Reply
  • snapback hats cheap

    Posted by xxds8vw on 03/29/2013 02:11am

    [url=http://cheapsnapbackshat.webs.com]cheap snapbacks online[/url] cheap snapbacks online c pdgk [url=http://wholesalefittedhat.webs.com]snapbacks wholesale[/url] snapbacks wholesale w zblp[url=http://snapbackswholesalezone.webs.com]snapbacks wholesale[/url] snapbacks wholesale q rfek[url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping i khsx[url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks[/url] cheap snapbacks k yqqg[url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping n axnf [url=http://cheaphatsmall.webs.com]snapback hats cheap[/url] snapback hats cheap r enwc [url=http://cheaphatsmall.webs.com]snapback hats cheap[/url] snapback hats cheap i vjym[url=http://snapbackhatwholesale.webs.com]wholesale snapbacks[/url] wholesale snapbacks z cmjn[url=http://bestbaseballcap.webs.com]wholesale baseball caps[/url] wholesale baseball caps b leum[url=http://snapbackswholesalezone.webs.com]snapback hats wholesale[/url] snapback hats wholesale q bhcl[url=http://cheapsnapbacksforsalezone.webs.com]cheap snapbacks online[/url] cheap snapbacks online y pokz [url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats j xzjp [url=http://cheapsnapbackshat.webs.com]cheap hats for sale[/url] cheap hats for sale s ltvj[url=http://snapbackswholesalezone.webs.com]fitted hats wholesale[/url] fitted hats wholesale q mbyc[url=http://cheapsnapbackshat.webs.com]cheap hats for sale[/url] cheap hats for sale a uyyt[url=http://bestbaseballcap.webs.com]wholesale hats[/url] wholesale hats z hhnt[url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks free shipping[/url] cheap snapbacks free shipping q zhhj

    Reply
  • cheap fake oakleys

    Posted by hgliliImpumpjas on 03/29/2013 12:23am

    fake ray ban sunglasses [url=http://fakeguccisunglasses.webs.com]fake ray ban sunglasses[/url] fake oakleys discount oakley sunglasses,,,,,o [url=http://discountsunglassessale.webs.com]discount oakley sunglasses,,,,,o[/url] discount ray ban sunglasses cheap ray ban [url=http://qualityguccisunglass.webs.com]cheap ray ban[/url] cheap ray ban cheap oakley [url=http://qualityguccisunglass.webs.com]cheap oakley[/url] fake ray ban wholesale oakley sunglasses [url=http://wholesalesunglasseschic.webs.com]wholesale oakley sunglasses[/url] cheap ray ban oakley discount [url=http://discountoakleysunglassesho.webs.com]oakley discount[/url] cheap sunglasses fake oakleys [url=http://bestsunglassesshop.webs.com]fake oakleys[/url] discount ray ban ray ban sunglasses cheap [url=http://onlineguciisunglass.webs.com]ray ban sunglasses cheap[/url] ray ban sunglasses cheap

    Reply
  • snapback hats cheap

    Posted by xxds3pq on 03/29/2013 12:02am

    [url=http://cheaphatsmall.webs.com]snapback hats cheap[/url] snapback hats cheap a afvl [url=http://cheapsnapbackshat.webs.com]cheap hats online[/url] cheap hats online b lllt[url=http://cheapsnapbackshat.webs.com]cheap snapbacks hats[/url] cheap snapbacks hats h qvnl[url=http://snapbackhatwholesale.webs.com]wholesale beanies[/url] wholesale beanies x lpve[url=http://wholesalefittedhat.webs.com]snapbacks wholesale[/url] snapbacks wholesale s nxco[url=http://snapbackhatwholesale.webs.com]wholesale fitted hats[/url] wholesale fitted hats m usdt [url=http://snapbackswholesalezone.webs.com]snapback hats wholesale[/url] snapback hats wholesale i guli [url=http://goodsnapbackhatscheap.webs.com]cheap snapbacks[/url] cheap snapbacks f rkjr[url=http://snapbackhatwholesale.webs.com]wholesale snapbacks[/url] wholesale snapbacks n fuxm[url=http://cheaphatsmall.webs.com]cheap hats[/url] cheap hats f qzjp[url=http://cheapsnapbackshat.webs.com]cheap hats[/url] cheap hats n hnll[url=http://bestbaseballcap.webs.com]wholesale snapback caps[/url] wholesale snapback caps i gnzb [url=http://snapbackswholesalezone.webs.com]fitted hats wholesale[/url] fitted hats wholesale u duqw [url=http://cheapsnapbackshat.webs.com]cheap snapbacks hats[/url] cheap snapbacks hats g gtej[url=http://bestbaseballcap.webs.com]wholesale hats[/url] wholesale hats x zgor[url=http://snapbackhatwholesale.webs.com]wholesale snapback hats[/url] wholesale snapback hats i kyku[url=http://snapbackhatwholesale.webs.com]wholesale snapback hats[/url] wholesale snapback hats v keul[url=http://snapbackhatwholesale.webs.com]snapback hats wholesale[/url] snapback hats wholesale f oztf

    Reply
  • Loading, Please Wait ...

Leave a Comment
  • Your email address will not be published. All fields are required.

Go Deeper

Most Popular Programming Stories

More for Developers

Latest Developer Headlines

RSS Feeds