views:

51

answers:

1

I have a base controller, is it possible to know what the calling controller was called?

+3  A: 

this.GetType() where this is the controller instance.

Darin Dimitrov