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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top