[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

ven

6/14/2004 8:06:00 PM

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