从nopCommerce中的事件处理程序重定向到Controller的操作方法

时间:2016-12-20 11:44:25

标签: c# asp.net-mvc nopcommerce

我正在使用nopCommerce的实体更新事件。我想重定向我的控制器的动作方法。

public void HandleEvent(EntityUpdated<GenericAttribute> eventMessage)
{
     //some code for redirect to controller action
}

如何从HandleEvent方法重定向到控制器的action方法。

我想从上面的事件处理程序重定向Controller的action方法而不使用Response.Redirect(url)

0 个答案:

没有答案