How do I create a subclass in C# for ASP.NET using Visual Studio 2010?
Do you mean this?
public class Foo {} public class Bar : Foo {}
In this case, Bar is the sub class.