gpt4 book ai didi

c# - 如何在 .aspx 文件中显示 "hello world"?

转载 作者:行者123 更新时间:2023-11-30 13:12:15 25 4
gpt4 key购买 nike

我有 Default.aspx 和一个单独的代码文件:

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
public string hello = "hello world"
}
}

我想在我的默认页面中显示此内容我已尝试使用 <%=hello%> 但不起作用。我做错了什么?

最佳答案

试试这个:

public partial class _Default : System.Web.UI.Page
{
public string hello = "hello world";
protected void Page_Load(object sender, EventArgs e)
{

}
}

关于c# - 如何在 .aspx 文件中显示 "hello world"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10919519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com