ASP.Net/Server/Transfer — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:53, 26 мая 2010

Transferring Control to Another Page (VB.net)

<%@ Page Language="VB" %>
<html>
<head>
   <title>Transferring Control to Another Page</title>
   <script runat="server">
      Sub Transfer()
"         Dim Url As String = "yourASPFile.aspx"
          Dim Url As String = "file.txt"
         Server.Transfer(Url)
         Response.Write("This code will never be executed!")
      End Sub
   </script>
</head>
<body>
<% Transfer %>
</body>
</html>