希望C#ASPX页面生成纯文本而不是HTML

时间:2010-07-29 16:53:10

标签: asp.net

我在Visual Studio中有一个C#项目,它生成一个aspx页面。我正在编辑的代码位于default.asp.cs。构建项目时,会生成一个文件default.aspx。这个文件看起来像这样:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CSRValidationConnector._Default" %>  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div> 
    </div>
    </form>
</body>
</html>

当我发布网页请求时,此页面的大部分都会回来。

但是我希望页面只返回纯文本,而不是任何HTML。除了Response.Write中通过default.aspx.cs来电添加的内容之外,如何配置内容以便不返回任何内容?

2 个答案:

答案 0 :(得分:4)

只需删除除<:p>以外的所有HTML

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CSRValidationConnector._Default" %> 

并在您的代码隐藏页面_Load中执行Response.Write("String")

答案 1 :(得分:4)

您正在寻找Response.ContentType:)

Response.ContentType = "text/plain";