Hello,
After some editing on the HTML designer in design or Design/Source view, I eventually run into memory problems.
This code seems to be especially problematic:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=ISO-8859-1″>
<title>Tutorial</title>
<STYLE>
div.insert {
background-color: #eee;
border: 2px solid black;
margin: 0 50px 0 50px;
padding: 0 10px 0 10px;
}
</STYLE>
</head>
<body>
<H1>Xxx</H1>
<P>Before the DIV</P>
<DIV class=”insert”>
<H3>Good Package Names</H3>
<P>How did I come up with the package name?</P>
<P>The first part is an internet domain which I own (philmann-dark.de). This makes sure the package name is unique. I have to remove the dash because it’s illegal in a package name.</P>
<P>Next comes the name of the project (all lowercase) and lastly the part of the project which is implemented here (the model).</P>
</DIV>
<P>After the DIV</P>
</body>
</html>
When you insert the DIV in the source view, the preview will hang for a long time.