diff --git a/src/Umbraco.Web/HtmlHelperRenderExtensions.cs b/src/Umbraco.Web/HtmlHelperRenderExtensions.cs
index 1a0bee2586..2a009dfaa2 100644
--- a/src/Umbraco.Web/HtmlHelperRenderExtensions.cs
+++ b/src/Umbraco.Web/HtmlHelperRenderExtensions.cs
@@ -188,21 +188,19 @@ namespace Umbraco.Web
///
internal class UmbracoForm : MvcForm
{
-
-
///
/// Creates an UmbracoForm
///
///
- ///
- ///
+ ///
+ ///
///
///
///
public UmbracoForm(
ViewContext viewContext,
- string surfaceController,
- string surfaceAction,
+ string controllerName,
+ string controllerAction,
string area,
FormMethod method,
object additionalRouteVals = null)
@@ -210,21 +208,7 @@ namespace Umbraco.Web
{
_viewContext = viewContext;
_method = method;
- //need to create a params string as Base64 to put into our hidden field to use during the routes
- var surfaceRouteParams = string.Format("c={0}&a={1}&ar={2}",
- viewContext.HttpContext.Server.UrlEncode(surfaceController),
- viewContext.HttpContext.Server.UrlEncode(surfaceAction),
- area);
-
- var additionalRouteValsAsQuery = additionalRouteVals != null ? additionalRouteVals.ToDictionary