My url looks like this:
customer/login?ReturnUrl=home
In the login view, I have used this pattern of code which works fine.
This works for me :
@using (Html.BeginForm("index", "Photos", routeValues: new { user = pUser, album = pAlbum, }, method: FormMethod.Get))
Explicit route values and method is what is required...