Hi Alan,
First a little bit of terminology.
A "page" is an HTML container. In other words it contains a basic structure along the lines of
<html>
<head>
...
</head>
<body>
...
</body>
</html>A page _is_ the basic container of a web site. So in that sense you cannot (*) "embed" one page in another.
(*) it is possible to embed one page in another using an iFrame, but I don't think that's what you're trying to do here.
Embedding _html_ inside a form, or page, is easy to do. Since it's just the HTML, and not the container itself. Forms have a "Display" field type, and you can use a tag like
<!-- Net:f:somefilename.htm -->To include _html_ (not a page itself, but an html snippet) inside a NetWebForm or NetWebPage.
If you do have a static html file, and let's say it's a complete page, and let's say it's called whatever.htm,
then you can link to it in your program just by using the appropriate URL. eg
http://127.0.0.1:88/whatever.htmnow onto some questions;
When you say "I have a static html page I need to display." - do you mean display it by itself, or display it on a form etc?
and is it really a "page" or just an html "snippet"?
cheers
Bruce