gpt4 book ai didi

asp.net - 如何以声明方式将页面的属性值插入到它的呈现中?

转载 作者:行者123 更新时间:2023-12-04 07:11:22 24 4
gpt4 key购买 nike

我想要一个包含类似...的aspx页面

<form id="form1" runas=server >
Hello <%= Me.UserName() %>
</form>

和一个代码隐藏的东西,比如......
Public Class Somepage
inherits SomeOtherPage
Private Readonly Property UserName() as String
Get
return "Rory"
End Get
End Property
End Class

我已经尝试过此代码,但 aspx 错误声称未声明 UserName。

这样做的正确方法是什么?

最佳答案

将属性标记为 protected ,而不是私有(private)。

Protected Readonly Property UserName() as String    
Get
return "Rory"
End Get
End Property

关于asp.net - 如何以声明方式将页面的属性值插入到它的呈现中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/287035/

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