ASP.Net/Server/Server Execute — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 15:30, 26 мая 2010
Executing Another Page (file) and Returning (VB.net)
<%@ Page Language="VB" %>
<html>
<head>
<title>Executing Another Page and Returning its Output</title>
<script runat="server">
Sub Execute()
Dim sw As New System.IO.StringWriter
Server.Execute("file.txt", sw)
Response.Write("Request output:<br/><br/>" & sw.ToString())
End Sub
</script>
</head>
<body>
<% Execute %>
</body>
</html>