Server.ScriptTimeout : Server class « Development « ASP.NET Tutorial






<%@ Page Language="VB" %>
<html>
<head>
   <title>Accessing and Modifying the ScriptTimeout Property</title>
   <script runat="server">

      Sub GetScriptTimeout()

         Dim Timeout As String

         'Server.ScriptTimeout = 120
         Timeout = Server.ScriptTimeout
         Response.Write("The current ScriptTimeout value is  " & Timeout & ".<br>")

      End Sub

   </script>
</head>
<body>

<% GetScriptTimeout %>

</body>
</html>








9.39.Server class
9.39.1.Use Server.HtmlEncode to encode HTML tags (C#)
9.39.2.Use Server.Transfer to transfer action to another aspx file (C#)
9.39.3.Server.UrlEncode
9.39.4.Forward the user to the information page, with the query string data (#)
9.39.5.Use Server.MapPath() to load the file in the current directory (VB.net)
9.39.6.Demonstration of Page_Error Handler
9.39.7.text generated by Execute can be embedded in the main response or cached in a writer object
9.39.8.Server.Execute
9.39.9.Server.GetLastError()
9.39.10.Server.HtmlDecode
9.39.11.Server.HtmlEncode
9.39.12.Server.MachineName
9.39.13.Server.MapPath
9.39.14.Server.ScriptTimeout
9.39.15.Server.Transfer
9.39.16.Server.UrlDecode
9.39.17.Server.UrlPathEncode