aRo` automating your e-commerce

This blog has been neglected due to the success of Solidshops.com
31Aug/07

how to create an excel file from an ASP page

The code below gives a brief example on how to create an .xls file from an asp webpage. I use this to often to export my customers data(database) to an offline version wich they can use for archiving/reporting.

To to so you have to change the contenttype of the asp file to "application/vnd.ms-excel". This code has to be at the top of you page.

From then on you can use the response.write() function to write data to the .xls file. The data must be structured in table rows("<TR>") .

You can define the fields in the .xls with TH and TD.

code snippet:

ASP:
  1. &lt;%
  2. Response.ContentType = "application/vnd.ms-excel"
  3. strfilename = "Filename_" &amp; Day(Date) &amp; Month(Date) &amp; Year(Date) &amp; ".xls"
  4. Response.AddHeader "Content-Disposition","filename=" &amp; strfilename
  5. response.expires = -1
  6. %&gt;
  7. strContent =”fill this variable(strContent) the same way as an html table”
  8.  
  9. &lt;able border="1" cellpadding="4" cellspacing="1" width="100%" %&gt;
  10. &lt;% response.write strContent %&gt;
  11. &lt;/table%&gt;

Popularity: 5% [?]

Filed under: asp No Comments
28Aug/07

a compiled list of 136 SEO tools

I came across this huge list of SEO tools. It's really a nice collection.

A word from the author:

This SEO Tools page has links to the best SEO Tools on the internet and these tools will help you to optimize your website and move your search engine position higher.

Popularity: 2% [?]

Filed under: SEO No Comments
28Aug/07

where is the host file located on a windows machine

You can find the host file in the folowing windows directory's depending of the OS.

Windows 95/98/Me c:\windows\hosts

Windows NT/2000 c:\winnt\system32\drivers\etc\hosts

Windows XP Home/XP Pro c:\windows\system32\drivers\etc\hosts

I use this a lot in case i want to refer to another environment(development) quickly without affecting other developpers working on the same project.

Popularity: 1% [?]

Filed under: windows No Comments
23Aug/07

RevenueWire Keyword Manager

RevenueWire launched a client tool to generate your keyword lists.

keywordmanagerscreenie.jpg

It's a nice tool to include with there upcoming affiliate network launch.

They need demo testers, so if u are interested you can get a copy here.

Popularity: 4% [?]

Filed under: ppc, software 1 Comment
23Aug/07

check your website for broken links

I spend days and days writing and testing a PHP tool that check links and returns the response code.

Problogger suggested 2 client tools that can do the same. You should give it a look.

I'm going to give Xenu’s Link Sleuth a try.

Popularity: 2% [?]

Filed under: software, tools No Comments