In article <Q9WdnUOV7fWdR_jcRVn-hQ (AT) rcn (DOT) net>, "Brett" <no (AT) spam (DOT) net>
wrote:
Quote:
Both make use of DIV tags or layers.
What are the main differences between
DHTML |
Dynamic HTML allows you to use the Javascript programming language to
control the actions of a web page. A common application is to check
that the user has filled out a form correctly.
Here is an example of javascript
:
var myAddress = x.elements["theAddress"].value;
// Check if the user wishes to cancel the submit.
if (myAddress.indexOf("*") >= 0)
{
alert(
"What a suprise!");
}
....
<input type="text" name="theAddress" size="40">
The above Javascript check if there is an asterisk (*) character in the
theAddress input field.
Cascading Style Sheets, CSS, allows to to format the web page. For
instance, you can select what font and color to display the text.
tr td { font-size: x-large;
font-family: cursive;
}
This set all text inside a table cell to be in the x-large size and a
cursive font.
Quote:
Also, what type of problems might an author experience in the way of
incompatibilities? For example, by:
- browser type |
You need to code your Javacript to meet the W3C standards.
Newer browsers support most CSS attributes the same.
Depends more on the browser than the OS.
Quote:
- firewall settings
n/a
- Antivirus settings
MS internet explorer has some inherent security weaknesses. A jscript
|
(MS javascript) program with the right permissions can interact with the
operating system to invoke other programs. These other program could do
harm. When a web page is located on an Internet server, jscript is not
allowed to interact with other program and should not be able to cause
any harm to the client machine.
All the other web browsers do note support interactions with other
program. There should not be any security concerns. One such browser
is Firefox.
Quote:
- network administrator setting restrictions |
Will need to review IE security issues on a regular basis. Consider
changing to Firefox, or some on non-MS browser.