table cell

V

ven

hello

i have problem with response.redirect method, namely i have default page
home.aspx where is html table :

<%@ Page Language="VB" %>
<script runat="server">

' Insert page code here
'

</script>
<%@ Register TagPrefix="eCommerce" TagName="Menu" Src="Menu.ascx" %>
<html>
<head>
<title>zamówienia Wf-Mag</title>
<link href="stylee.css" rel="stylesheet" />
</head>
<body>
<form runat="server">
<table width="100%" border="0">
<tbody>
<tr valign="top">
<td colspan="2">
<!-- HEADER -->
<div style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px;
PADDING-BOTTOM: 5px; COLOR: white; PADDING-TOP: 5px; BACKGROUND-COLOR:
#990000"><span style="FONT-WEIGHT: bold; FONT-SIZE:
32pt">zamowienia.intak.pl</span>
</div>
</td>
</tr>
<tr valign="top">
<td width="20%">
<!-- MENU -->
<ECOMMERCE:MENU runat="server" />
</td>
<td width="80%">
<!-- CONTENT -->retreter</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>

and everything is ok but when i call response.redirect from menu.ascx new
page is opening in browser, but not in third table cell.... what should i do
to open new page in third cell ???

thanks

Patrick
 
M

Marty U.

ven said:
hello

i have problem with response.redirect method, namely i have default page
home.aspx where is html table :

<%@ Page Language="VB" %>
<script runat="server">

' Insert page code here
'

</script>
<%@ Register TagPrefix="eCommerce" TagName="Menu" Src="Menu.ascx" %>
<html>
<head>
<title>zamówienia Wf-Mag</title>
<link href="stylee.css" rel="stylesheet" />
</head>
<body>
<form runat="server">
<table width="100%" border="0">
<tbody>
<tr valign="top">
<td colspan="2">
<!-- HEADER -->
<div style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px;
PADDING-BOTTOM: 5px; COLOR: white; PADDING-TOP: 5px; BACKGROUND-COLOR:
#990000"><span style="FONT-WEIGHT: bold; FONT-SIZE:
32pt">zamowienia.intak.pl</span>
</div>
</td>
</tr>
<tr valign="top">
<td width="20%">
<!-- MENU -->
<ECOMMERCE:MENU runat="server" />
</td>
<td width="80%">
<!-- CONTENT -->retreter</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>

and everything is ok but when i call response.redirect from menu.ascx new
page is opening in browser, but not in third table cell.... what should i do
to open new page in third cell ???

thanks

Patrick
Patrick by briefly looking at your post it seems you would need to use
an IFRAME. Response.Redirect will send the user to a new page replacing
the parent page for which the request is made.

I might be misunderstanding your question if so sorry.

Marty U.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top