Search found 5 matches

by waitman
Thu May 13, 2004 9:23 am
Forum: Anything Goes
Topic: just a little page code help
Replies: 7
Views: 7471

google is your friend

embed midi

http://www.angelfire.com/fl5/html-tutorial/music.htm

That 'object classid" stuff would be less compatible with the population.

The "language" element tells the browser the minimum version (in your example javascript) that would be needed to run the enclosed code. different versions ...
by waitman
Thu May 13, 2004 9:09 am
Forum: Anything Goes
Topic: Frames gripe...
Replies: 5
Views: 7245

frames

My comments,

Frames are incredibly awesome for password protected administrative pages however terribly bad for general public pages. They just aren't machine readable enough...

Take care,
by waitman
Thu May 13, 2004 9:03 am
Forum: Anything Goes
Topic: OT - E-Mail from form script?
Replies: 4
Views: 6421

php formmail

i had a customer using a formmail perl script, this thing has had security issues in the past (however they have probably been resolved.)

so I replaced it with a php script i threw together, seems to work similar to formmail. i wanted to mimick the functionality of formmail without messing around ...
by waitman
Thu May 13, 2004 8:48 am
Forum: Anything Goes
Topic: OT - includes in ASP code...
Replies: 1
Views: 3991

this works better

why don't you make one template file and do something like this.


1. content.asp


strContent = "<h3>Title</h3><p>foo bar foomazooma</p>"

Set FO = Server.CreateObject("Scripting.FileSystemObject")
fn = Server.MapPath("layout.html")
Set TemplateFile = FO.OpenTextFile(fn)
strLayout = TemplateFile ...
by waitman
Thu May 13, 2004 8:27 am
Forum: Anything Goes
Topic: Web advice needed please!
Replies: 3
Views: 5381

yup, css will do

Hello

Yes, you should look into CSS. Below are two example that produce similar results, the first table without CSS and the second with CSS. http://validator.w3.org/ gripes about the background attribute on the <td>, because it is indeed deprecated. I didn't try but you could probably set your ...