I place using namespace in a view code behind but i can\'t call any class of this name space in aspx.
In codebehind:
using MVCTest.Controller;
Suppose this is your .Cs file say
namespace MVCTest.Controller { public class Utility { public static void func1() {} } }
namespace MVCTest.Controller {
public class Utility { public static void func1() {} }
}
Try calling the function by : Utility.func1()