1

In the context of this question link text is possible from a Controller that responds to a Form Post to go to the Friendly Url?

Community
  • 1
  • 1
Jedi Master Spooky
  • 5,143
  • 11
  • 49
  • 85

1 Answers1

2

Yes. Your controller action can determine the friendly url based on how you would like the route defined for it, then do a Redirect to the friendly url instead of returning the view. It will cause another browser request which will add load to to your server, so you'd want to be sure that it was really important.

tvanfosson
  • 490,224
  • 93
  • 683
  • 780