The City of knowledge
HTML
Multiple Submit Buttons
Oct 28th
Often you’ll need more than one Submit button for your forms. Perhaps one for adding a record and one for deleting a record.
<form> <INPUT Type=Submit Value=”Add Record” onClick=”this.form.action=’addrecord.asp’;”>
<INPUT Type=Submit Value=”Del Record” onClick=”this.form.action=’deleterecord.asp’;”> </form>
Now Playing on the Big Screen
Oct 28th
I’m presently working on an Internet application , and have been able to restrict usage to Internet Explorer 4.0. However, one issue that has been raised again and again is would we be able to dynamically hide the user’s taskbar or force the browser to go to full screen mode More >
Redirect browser to another page
Oct 28th
<meta http-equiv=”refresh” content=”number of seconds; url=urltogoto.htm”>
The page that started this whole thing!
Repeating Yourself
Oct 28th
ot something you want to say on every single page of your Web site? Well, here’s a quick and easy way to repeat yourself without a lot of retyping. First, create and save a Web page that only includes the information you want to have appear on other Web pages More >
Set Home Page
Oct 28th
The following example takes advantage of an intrinsic DHTML behavior to change the user’s home page to the current page. The style block, which goes in the <HEAD> of the document, associates the .homepage class with the built-in behavior. The inline STYLE on the <SPAN> tag simulates the look and More >
Setting Margins
Oct 28th
The multimedia firm I work for recently created a site for a client in Microsoft FrontPage. In Explorer, the page looks fine. In Netscape, there’s a line straight through the middle. The page is split into two frames and uses tables for the images. Can you help me get rid More >
Single-Pixel GIFs
Oct 28th
The following single-pixel GIF files use colors from Netscape’s 216-color palette. Images created with them should not require dithering for a 256-color display. Each file is 41 bytes long. The files were generated from single-pixel GIF files available from David Siegel. All 216 files plus dot_clear.gif (43 bytes long) and More >
Super MailTo
Oct 28th
Mailtos are a convenient way to let your audience offer feedback on your Web site or to arrange other contact information. But you can do a lot more with a mailto than just automatically generate an email message. Super ninja mailtos can automatically CC: and BCC: people–or even fill in More >
Timing Your Splash Page
Oct 28th
You want a splash screen to announce something big–your company’s IPO, the birth of your kid–but you also want to make sure people get to your real home page. Why trust the audience to be smart enough to figure it out? Just tell the page to automatically move on in More >
Turn Off Autocomplete
Oct 28th
You can turn off autocomplete via some HTML. For IE not to store the Autocomplete information for a particular text box, use the following: <input type=“textbox” name=“thename” values=“” autocomplete=“off”>
