Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Happens If a Hyper Link Points to a ZIP File
What Happens If a Hyper Link Points to a ZIP File? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs
✍: FYIcenter.com
If you want to build a hyper link to allow visitors to access a ZIP file by clicking a hyper link, you can put the URL of the ZIP file directly in the "href" attribute of the hyper link. If a visitor clicks the link, the browser will fetch the PDF file, and display a dialog box to ask you to save the file to your local computer.
The tutorial example below shows you how ZIP files can be linked by hyper links:
<p>Click the hyper link to save the <a href="http://www.w3.org/TR/xhtml1/xhtml1.zip" >ZIP File</a> provided by www.w3.org.</p>
The above code is included below in this document, so you can try it now.
Click the hyper link to save the ZIP File provided by www.w3.org.
2007-05-12, 4974👍, 0💬
Popular Posts:
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...
If cookies are not enabled at browser end does form Authentication work? No, it does not work.
How To Control Vertical Alignment? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells By d...
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze poss...
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...