you cant load a page within a table, however you can do so in a frame or iframe, if you really must. The use of frames ar generally frowned upon though.
I would suggest an iframe. Simply put the following code in your table:
Code:
<iframe src= "url_of_file.htm" name ="framename"></iframe>
...
// then add this to any links
<a href="new_file.htm" target="framename">
Clicking the link will open the specified file in the iframe. Hope this helps!