You can add this code to the Checkout.aspx page
<script>
<%
If mvwCheckout.ActiveViewIndex = 0 Then
%>
window.location.hash = 'login';
<%
ElseIf mvwCheckout.ActiveViewIndex = 1 Then
%>
window.location.hash = 'step1';
<%
ElseIf mvwCheckout.ActiveViewIndex = 2 Then
%>
window.location.hash = 'step2';
<%
End If
%>
</script>
and in Checkout.aspx.vb, change Server.Transfer("CheckoutComplete.aspx")
to
Response.Redirect("CheckoutComplete.aspx")
Then these are the urls for each step of checkout:
These are the urls for each stepof checkout:
View basket contents
https://websitename.com/Basket.aspx
if not logged in yet – must log in before checking out
https://websitename.com/Checkout.aspx#login
enter billing/shipping address, shipping methods
https://websitename.com/Checkout.aspx#step1
enter payment options
https://websitename.com/Checkout.aspx#step2
thank you page
https://websitename.com/CheckoutComplete.aspx