The ‘Web application programming’ Archives
Posted October 11, 2006 by

Classic ASP: Generate Excel spreadsheets on the fly

The following script allows you to generate an excel spreadsheet from data stored in an access database.

Posted October 4, 2006 by

Dreamweaver: Saving a Find and Replace Search

You can save your frequently used Find and Replace searches so that you no longer have to recreate it each time you want to use it. To do this:

Posted September 29, 2006 by

Dreamweaver: How To Change The Default Font Options

You can specify which font and size to be used for the default Proportional font, Fixed font, and Code view. To do this:

Posted September 28, 2006 by

Make Microsoft Visual Web Developer Open Quicker

You can make Visual Web Developer open much quicker by having it open to an empty environment instead of going to the default Start Page. To do this:

Posted September 14, 2006 by

Install Ruby on Rails on Ubuntu Linux

Installing Ruby on Rails on Ubuntu Linux isn’t quite as easy as installing it on other operating systems. Here’s a recipe that’ll get you up and running in no time.

Category Ruby on Rails

Posted September 11, 2006 by

Using Tagging in your Ruby on Rails Application

Tagging is all the rage in the web 2.0 universe. For you aspiring Ruby on Rails developers, you are in luck, because there is a great plugin that makes adding tagging into your application a breeze. This recipe describes using the acts_as_taggable plugin on Rails 1.1

Category Ruby on Rails

Posted July 14, 2006 by

PHP: Delete or expire a browser cookie

Cookies may be created with an expiration time. It may become necessary to expire a cookie before the expiration time such as when a user logs out of a cookie-based authentication web application. This recipe describes expiring a cookie.

Category PHP programming

Posted July 14, 2006 by

PHP: Read a browser cookie value

Once your web application has set a cookie in a user’s browser, it is a simple matter to retrieve that value in subsequent page requests. This recipe describes reading a value from a cookie in PHP.

Category PHP programming

Posted July 14, 2006 by

PHP: Set or create a simple browser cookie with setcookie

Web applications overcome the lack of session support in the HTTP protocol primarily through the use of cookies. Transparent to the user and simple for the web developer, cookies provide the foundation of keeping up with who a web user is, where they’ve been, and what they had for lunch. Well, who and where, anyway.

Category PHP programming

Posted July 10, 2006 by

PHP: Rename or move a file on the server

Working with server-side files with PHP adds a great deal of flexibility to some applications. A common scenario when working with files involves creating a temporary file through uploading or other means and then renaming this file to a permanent location. This recipe describes changing the name of an existing file using the PHP function [...]

Category PHP programming