我通过Nuget安装Ext.Net,使用vs2012,.net 4.5 mvc。 按照Ext.Net上的第一个样本,控制器中有两种方法: 索引实际上是空的,这是第二个:
// GET: /DirectEventExample/Notify/
public ActionResult Notify(string message) {
var config = new NotificationConfig
{
Icon = Icon.Accept,
Title = "Working",
Html = message
};
X.Msg.Notify( config ).Show();
return this.Direct();
}
最后一个命令,无法识别this.Direct()。 我引用了两个库: 使用Ext.Net; 使用Ext.Net.MVC;
我错过了什么?