Posted on 15/03/2017 15:14:13
I'm using the modal login from the Wrapper and it already has the current page id showing. Below is from the form in Master.cshtml
<form role="form" id="loginform" method="post">
<div class="modal-body">
@if (!string.IsNullOrWhiteSpace(GetString("DW_extranet_error_uk")))
{
<script>alert("@GetValue("DW_extranet_error_uk")");</script>
}
<input type="hidden" name="ID" value="@Pageview.ID" />
<input type="hidden" name="DWExtranetUsernameRemember" value="True" />
<input type="hidden" name="DWExtranetPasswordRemember" value="True" />
but there is still some redirection going on at a later stage and can't figure out where that happens. Is there a setting somewhere for "After login redirect to page..." or something similar?