本文介绍了如何在aspx文件中使用类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我定义了这样的函数: 公共函数myfunction(ByVal myvar As Object)As String ... 返回xyz 结束功能 在aspx文件中,我这样使用它: < asp:Literal ID =" lit" RUNAT = QUOT;服务器" Text =''<%#myfunction(Eval(" myfield")) %>''/> 现在我定义了一个相同的类功能如下: 公共类descr 公共共享函数myfunction(ByVal myvar As Object)As String ... .. 返回xyz 结束功能 结束课程 我的问题是:如何使用该课程aspx文件? 谢谢 JanHi,I defined a function like this:Public Function myfunction(ByVal myvar As Object) As String...Return xyzEnd Functionin aspx file, i use it like this:<asp:Literal ID="lit" runat="server" Text=''<%# myfunction(Eval("myfield"))%>'' />Now i defined a class with the same function like this:Public Class descrPublic Shared Function myfunction(ByVal myvar As Object) As String.....Return xyzEnd FunctionEnd ClassMy question is: how to use that class in the aspx file?ThanksJan推荐答案 由于该方法是静态的(在VB中共享),您可以通过指定 类名和方法来访问它: <%#descr.myfunction (Eval(myfield))%> - G?跑Andersson _____ http://www.guffa.com 这篇关于如何在aspx文件中使用类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 09-02 19:26