|
Yes: Deze website is te huur of te koop
Website kopen
U kunt de website kopen en daarmee in eigendom overnemen. U kunt dan doen en laten wat u wilt met deze website.
U kunt natuurlijk de website bij een andere hosting partij hosten.
Natuurlijk kunt u de website ook bij ons laten en aldaar hosten. Wij kunnen u daarvoor een aantrekkelijk aandod doen.
U kuntThe #include directive is used to create functions, headers, footers, or
elements that will be reused on multiple pages.
How to Use the #include Directive
Here is a file called "mypage.asp":
<html>
<body>
<h3>Words of Wisdom:</h3>
<p><!--#include file="wisdom.inc"--></p>
<h3>The time is:</h3>
<p><!--#include file="time.inc"--></p>
</body>
</html> |
Here is the "wisdom.inc" file:
"One should never increase, beyond what is necessary,
the number of entities required to explain anything." |
Here is the "time.inc" file:
<%
Response.Write(Time)
%> |
If you look at the source code in a browser, it will look something like this:
<html>
<body>
<h3>Words of Wisdom:</h3>
<p>"One should never increase, beyond what is necessary,
the number of entities required to explain anything."</p>
<h3>The time is:</h3>
<p>11:33:42 AM</p>
</body>
</html> |
|