Accessing and Modifying the ScriptTimeout Property (VB.net) : Timeout « Server « ASP.Net






Accessing and Modifying the ScriptTimeout Property (VB.net)

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

      Sub GetScriptTimeout()

         Dim Timeout As String

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

      End Sub

   </script>
</head>
<body>

<% GetScriptTimeout %>

</body>
</html>

           
       








Related examples in the same category