I don't want a method in another class. I have plenty od classes in app_code that I can call from anywhere.
I want a method on the page that I can call from other classes. Specifically I want to have a method that returns the URL to redirect to that page. The method may have parameters that are translated into query string parameters on the URL. This is one example, there are others where I would want an actual static method on the page class.
I tried creating a partial class with the same class name in a unit in app_code. That doesn't work either...