ASP.Net/Response/Redirecting — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 11:54, 26 мая 2010
Redirecting to a new page (VB.net)
<%@ Page Language="vb" %>
<html>
<head>
<title>Redirecting to a new page in ASP.NET</title>
<script runat="server">
Sub Page_Load()
Response.Redirect("http://www.nfex.ru", True)
End Sub
</script>
</head>
<body>
<asp:label id="Message" runat="server"/>
</body>
</html>