table cell

  • Thread starter Thread starter ven
  • Start date Start date
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
 
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.
 
Back
Top