作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 VB.NET WebForms 应用程序,我正在尝试在标记中使用内联服务器标记来调用位于模块中的函数。无论我做什么,当我使用 <%= %>
时,我都无法让智能感知显示方法。或 <%# %>
标签。这是我的模块:
Module TestModule
Function test() As String
Return String.Empty
End Function
End Module
但是,当我将模块转换为类并将方法转换为共享方法时,我可以这样做:
Public Class TestClass
Shared Function test() As String
Return String.Empty
End Function
End Class
我可以将它放在我的表单中:
<%= MyApp.TestClass.test%>
我可以在控件绑定(bind)中使用它:
<asp:Button ID="cmWhatever" Text='<%#MyApp.TestClass.test%>' runat="server" />
如何从标记中引用模块方法?
最佳答案
'改用这个:
Public Module TestModule
Public Function test() As String
Return String.Empty
End Function
End Module
'此外,您必须在 aspx 页面的开头使用 <%@ Import Namespace="Your root namespace"%>
关于asp.net - 如何在 ASPX 标记中调用模块函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24864353/
我是一名优秀的程序员,十分优秀!