Causes the browser to
          redirect to another page/URLSyntax:
        
          Response.Redirect url_string 
         
        Parameters:
        
          url_string - can be relative path, virtual path or absolute URL of
          any type supported by the browser.  
         
        Examples:
        JScript: 
        <%  
            Response.Redirect("other.asp"); 
        %> 
        Remarks:
          Method realization in ALP version uses HTML META tag automatic
          generation. Note that the page that calls Redirect will continue to
          execute the code after the statement that calls the method. 
        Applies to: Response object 
         |