I have reality site that connectes to an asp page to pull listing is there a way to intergrate this asp site with a frame site top is menu of curnt site when the click the asp page loads on bottm if so how and if not what is the best solution.. :p
steady

You could use this:-

<HTML>
<HEAD><TITLE>My Frame Page</TITLE></HEAD>
<frameset rows="100,*" border="1">
<frame src="menu.htm" name="One" scrolling="auto"
marginwidth="0" marginheight="0" noresize>
<frame src="propertylistingpage.asp" name="Two" scrolling="auto"
marginwidth="0" marginheight="0" noresize>
</frameset>
<noframes>
You need a frames capable browser to view this page.
</noframes>
</HTML>

Hope this helps.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.