ASP.Net/Response/Response Type — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 15:30, 26 мая 2010
Set response type to xml (VB.net)
<%@ Page Language="vb" %>
<html>
<head>
<title>Response property example</title>
<script runat="server">
Sub Page_Load()
Response.ContentType = "text/xml"
Message.Text = "This page will be displayed as XML in " & _
"Internet Explorer 5.0 or above."
End Sub
</script>
</head>
<body>
<asp:label id="Message" runat="server"/>
</body>
</html>