HTML Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you embed HTML Page in to a another HTML Page. Like its done on this webpag

http://www.myfloridahouse.com

where The White Status boards (Current Bills) is actually a different webpage. How do you embed HTML Page into another HTML Page like that.
 
It's ASPX, not HTML
You can do it with iFrames/Frames and also with something like this
(this is ASP but sme idea) http://www.darkfalz.com/1068

Basically though, it's not HTML embedding HTML, it's ASP(X) Retrieving and
enbedding the return from the remote page

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com


Shreyash Patel said:
How do you embed HTML Page in to a another HTML Page. Like its done on this webpage

http://www.myfloridahouse.com/

where The White Status boards (Current Bills) is actually a different
webpage. How do you embed HTML Page into another HTML Page like that.
 
the example is VBScript, not .NET at all, but the same idea should work.
Just google "get remote page" or something similar
 
Try this:

<!--#include file="{filename}" -->
That's the way to do a SSI (Server Side Include)

HTH,
Sueffel
Shreyash Patel said:
How do you embed HTML Page in to a another HTML Page. Like its done on this webpage

http://www.myfloridahouse.com/

where The White Status boards (Current Bills) is actually a different
webpage. How do you embed HTML Page into another HTML Page like that.
 
Back
Top