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:
<% Response.ContentType = "application/vnd.ms-excel" strfilename = "Filename_" & Day(Date) & Month(Date) & Year(Date) & ".xls" Response.AddHeader "Content-Disposition","filename=" & strfilename response.expires = -1 %> strContent =”fill this variable(strContent) the same way as an html table” <able border="1" cellpadding="4" cellspacing="1" width="100%" %> <% response.write strContent %> </table%>
Popularity: 5% [?]
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% [?]
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% [?]
RevenueWire Keyword Manager
RevenueWire launched a client tool to generate your keyword lists.

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% [?]
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% [?]


