我想在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 */
}
}
}