gpt4 book ai didi

c# - 在 aspx 中显示代码隐藏

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:13 26 4
gpt4 key购买 nike

您好,我刚刚在 VS 中打开新页面并添加了一行,请问为什么不显示日期时间?只有黑页。

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<%# DateTime.Now.ToString() %>
</div>
</form>
</body>
</html>

最佳答案

<%# ... %>data-binding syntax , 这基本上意味着直到 DataBind() 才会计算表达式叫做。因为你不打电话 DataBind() , 什么都不会打印出来。

立即计算表达式的语法是:

<%= DateTime.Now.ToString() %>

关于c# - 在 aspx 中显示代码隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12341409/

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