call a method in the masterpage from vb to c#

  • Thread starter Thread starter sck10
  • Start date Start date
S

sck10

Hello,

I am using the following to call a sub procedure in a MasterPage using vb.
I am trying to find the equivalent in c#. Any help would be appreciated.

Call CType(Me.Master, mpColumn02).LoadMenu("menu_svcprtf")

Thanks, sck10
 
Call CType(Me.Master, mpColumn02).LoadMenu("menu_svcprtf")
=
((mpColumn02)this.Master).LoadMenu("menu_svcprtf");
 

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