asp.net中如何生成静态类?我的想法是生成一公用类(如Functions),放一些公用函数(如f_1),需要使用时直接 Functions.f_1(); 而不必如下: Functions f=new Functions(); f.f_1(); 可否实现?[解决办法]用static修饰符