App_code folderページを使用して内部でクラスを呼び出したいのですが、Usercontrolどうすればよいですか?
namespace Project.Folder
{
public partial class DefaultMenu2 : System.Web.UI.UserControl
{
public void Page_Load(object sender, EventArgs e)
{
Util.Function();/*this is what i wan to call but cannot call it in my project */
}
}
}