Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类,它不在后面的代码中,我已经声明了一个属性,比如“名称”。现在我想在 aspx 页面中访问这个属性“名称”。
我知道我们可以通过在页面后面的代码中创建另一个属性或字符串变量或隐藏字段并为其设置“名称”属性值并使用 <%= %> 访问这个新的属性/变量/隐藏字段来做到这一点aspx 页面。
但我不想采用上述方法。
那么有没有其他办法。
您可以在代码后面添加一个属性,该属性将包含对您的类的引用:
public SomeClass MyClass { get { // return an instance of SomeClass here return new SomeClass(); } }
然后在 aspx 页面中,您可以访问此属性:
<%= MyClass.SomeProperty %>