Accredited Investors can click the appropriate button to view password protected performance. If you do not have a password and would like information about The Skye Hedge Fund LP or Skye Short-Only Account Management, please send an email to paul@skyellc.com or call our offices at 650-328-1180. |
<%
If Request.Form("login") = "true" Then
CheckLogin
Else
ShowLogin
End If
Sub CheckLogin
If LCase(Request.Form("username")) = "guest" And LCase(Request.Form("userpwd")) = "guest" Then
Session("UserLoggedIn") = "true"
Response.Redirect "index.asp"
'Response.Write("login works, sorta???")
Else
Response.Write("Login Failed.
<% End Sub %>
") ShowLogin End If End Sub %> <% Sub ShowLogin %> |