Hi,
I want to make one page where i have to call 12 different pages.
I dont want to use frames. I used table and it is working fine.
The problem is while clicking on some button or link on some page new page is going to open.
I want that page is to be opened in that segment of table( I mean in same TD) keeping other pages in the table
Below is my code
==========================
==========
==========
==========
====
<%@ Language=VBScript %>
<HTML>
<HEAD>
<meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
</HEAD>
<body >
<TABLE id="Table1" height="600" cellSpacing="0" cellPadding="0" width="980" border="0">
<TR>
<TD width="380" colSpan="2" height="600" rowSpan="2"><!-- #Include File="1.html"--></TD> -------->TD 1
<TD width="300" height="300"><!-- #Include File="2.html"--></TD> -------->TD 2
<TD align="middle" width="300" height="300" ><!--#include File="test.html"--></TD> =====>TD 3
</TR>
<TR>
<TD width="300" height="300"><!-- #Include File="4.html"--></TD> -------->TD 4
<TD width="300" height="300"><!-- #Include File="5.html"--></TD> -------->TD 5
</TR>
</TABLE>
<TABLE height="600" cellSpacing="0" cellPadding="0" width="980" border="0" ID="Table2">
<TR>
<TD width="245" height="300"><!-- #Include File="6.html"--></TD> -------->TD 6
<TD width="245" height="300"><!-- #Include File="7.html"--></TD> -------->TD 7
<TD colspan="2" width="490" height="300" ><!-- #Include File="8.html"--></TD> -------->TD 8
</TR>
<TR bgcolor="#000099">
<TD width="245" height="300"><!-- #Include File="9.html"--></TD> -------->TD 9
<TD width="245" height="300" ><!-- #Include File="10.html"--></TD> -------->TD 10
<TD width="245" height="300"><!-- #Include File="11.html"--></TD> -------->TD 11
<TD width="245" height="300" ><!-- #Include File="12.html"--></TD> -------->TD 12
</TR>
</TABLE>
</body>
</HTML>
--------------------------
----------
----------
----------
----------
----------
----------
----------
----------
----------
----------
----------
----------
----------
---
TRY.HTML
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
</HEAD>
<BODY >
<P>Click on Map and Enter the details of location for which you want get the map</P>
<a target=_parent href="../Scripts/mqinterco
nnect.exe?
link=find"
'> <img src=map.gif> </a>
</BODY>
==========================
= OR========================
==========
=======
<BODY>
< P>Click on Map and Enter the details of location for which you want get the map</P>
<INPUT type="button" value="Map" id=button1 name=button1
onClick='location.href ("../Scripts/mqinterconnec
t.exe? link=find")' >
</BODY>
</HTML>
==========================
==========
==========
==========
==========
==========
==========
==
I want the resultent page from the link in html page ( ("../Scripts/mqinterconnec
t.exe? link=find") ) should be displayed in
TD 3.
Please help me in this.
sachi
Start Free Trial