hi all,
regarding form that authenticates logging in ppl.
so the current function loads "Default.html" but I would like it to load "authok.html".
not quite sure where i should make modifications to.
*************************
Sub Page_Load
Dim strLinkPath As String
If Not IsPostBack Then
strLinkPath = String.Format( "Register.aspx?ReturnUrl={0}", _
Request.Params( "ReturnUrl" ) )
lnkRegister.NavigateUrl = String.Format( strLinkPath )
End If
End Sub
*************************
regarding form that authenticates logging in ppl.
so the current function loads "Default.html" but I would like it to load "authok.html".
not quite sure where i should make modifications to.
*************************
Sub Page_Load
Dim strLinkPath As String
If Not IsPostBack Then
strLinkPath = String.Format( "Register.aspx?ReturnUrl={0}", _
Request.Params( "ReturnUrl" ) )
lnkRegister.NavigateUrl = String.Format( strLinkPath )
End If
End Sub
*************************