Redirect to Controller's action method from event handler in nopCommerce

466 Views Asked by At

I am using entity updated event of nopCommerce. I want to redirect on my controller's action method.

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

How can i redirect into controller's action method from HandleEvent method.

i want to redirect on Controller's action method from above event handler without using Response.Redirect(url)

0

There are 0 best solutions below