how to call module methods from aspx page code.

  • Thread starter Thread starter Guoqi Zheng
  • Start date Start date
G

Guoqi Zheng

Dear Sir,

I have an existing application done in ASP.NET(VB.NET), I need to change one
page of it. Because I am not able to recompile the code and upload the new
dll, I am thinking to use one extra aspx page with <script runat="server">.

I need to call many methods in the vb.net module, how do I do this? the
methods in the modules seems to be treated as "Friend" which means I can not
call them from ASPX page code.

How do call those "Friend" methods in modules?

Regards,

Guoqi Zheng
 
if you security is set high enough, then you can use reflection to call the
methods.

-- bruce (sqlwork.com)
 
Back
Top