如何制作一个没有任何有效负载的asp.net页面只是源代码中的一个字符串?

时间:2012-02-06 11:40:19

标签: asp.net

正常的asp.net页面如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Foo.aspx.cs" Inherits="Foos" %>

<!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>
           <asp:Label ID="Label1" runat="server" Text="my text"></asp:Label>
    </div>
    </form>
</body>
</html>

然后我会显示“我的文字”。

问题是,现在我需要制作一个页面,只显示“我的文本”而不​​在背景中显示html内容。所以当我查看源代码时,它应该只是my text

当然我需要在后台使用asp.net来更改标签文本。

这可能吗?

1 个答案:

答案 0 :(得分:0)

只需删除除页面标记之外的所有内容,然后在Page_Load中将我的文本写入响应

在aspx中:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Foo.aspx.cs" Inherits="Foos" %>

在.cs:

protected void Page_Load(object sender, EventArgs e)
{
     Response.Write("My text")
}

或者你可以在页面中添加一个文字(在后面的代码中设置它的值)并删除这样的html:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Foo.aspx.cs" Inherits="Foos" %>
<asp:Literal ID="literal1" runat="server" />