asp.net mvc - Ext.Net this.Direct() not recognized -
i installed ext.net through nuget, working vs2012, .net 4.5 mvc. following first sample in book on ext.net, there 2 methods in controller: index empty, , here second one:
// 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(); }
the last command, this.direct() not recognized. have referenced both libs: using ext.net; using ext.net.mvc;
what missing?
Comments
Post a Comment