Code: Select all
@Html.ActionLink("", "SendEmail", "SendEmailController", ...)
Code: Select all
[HttpGet]
public ActionResult SendEmail()
{
string tag = "";
// need some way to pass this tag back to the view?
}
Code: Select all
@Html.ActionLink("", "SendEmail", "SendEmailController", ...)
Code: Select all
[HttpGet]
public ActionResult SendEmail()
{
string tag = "";
// need some way to pass this tag back to the view?
}