ASP.Net/Server/Server Info — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 11:53, 26 мая 2010
Accessing the MachineName Property (VB.net)
<%@ Page Language="VB" %>
<html>
<head>
<title>Accessing the MachineName Property</title>
<script runat="server">
Sub GetMachineName()
Dim ServerName As String
ServerName = Server.MachineName
Response.Write("The name of the server is " & ServerName & ".<br>")
End Sub
</script>
</head>
<body>
<% GetMachineName %>
</body>
</html>