Newbie: Grouping Commonly-used Methods

  • Thread starter Thread starter Myk Quayce
  • Start date Start date
M

Myk Quayce

I'm writing a website using Notepad and ASP.NET and C#, and I'm trying to
determine the best way of grouping commonly-used methods so they can be
accessed by many .aspx pages.

Any help would be greatly appreciated.
 
Myk Quayce said:
I'm writing a website using Notepad and ASP.NET and C#, and I'm trying to
determine the best way of grouping commonly-used methods so they can be
accessed by many .aspx pages.

Any help would be greatly appreciated.

You can make the methods be public static members of a public class. Then
any page will be able to access them.
 
Back
Top