Dear All,
I am stuck on one requirement where i need to call controller and action from email. When user will click one link from that email, relevant logic should work. Below is the code. But it is giving error like "Input string was not in correct format....."
Code:
string WorkflowLink = string.Format(CultureInfo.InvariantCulture, "You can <a href='{@Url.Action(ControllerName, ActionName)}'>Approve</a> this work here.");
Is there any way to achieve this.
Thank you.