如何以声明方式将页面的属性值插入到其渲染中?

发布于 2024-07-09 00:58:00 字数 452 浏览 9 评论 0原文

我想要一个 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。

执行此操作的正确方法是什么?

I would like to have an aspx page that contains something like....

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

and a code-behind something like...

Public Class Somepage
    inherits SomeOtherPage
    Private Readonly Property UserName() as String
    Get
        return "Rory"
    End Get
    End Property
End Class

I have tried this code but the aspx errors claiming that UserName is not declared.

What is the proper way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不咬妳我踢妳 2024-07-16 00:58:00

将属性标记为受保护,而不是私有。

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

Mark the property as Protected, not Private.

Protected Readonly Property UserName() as String    
     Get        
          return "Rory"    
     End Get    
End Property
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文