% Response.Buffer=true %>
<%
lowerbound = 35
upperbound = 96
Randomize
nfuseKey = ""
for i = 1 to 512
nfuseKey = nfuseKey & Chr(Int(((upperbound - lowerbound) + 1) * Rnd + lowerbound))
next
Session("nfuseKeyString") = nfuseKey
Set app = Server.CreateObject("com.citrix.nfuse.App")
Set propKey = Server.CreateObject("com.citrix.nfuse.PropertiesKeys")
if app.guestLoginOnly() Then
Response.Redirect("frameset.asp")
End If
%>
<%= propKey.getStaticString("LoginTitle") %>
|
|
| <%= propKey.getStaticString("Welcome") %> |
|
<%= propkey.getStaticString("PleaseLogin") %>
- <%= propKey.getStaticString("PleaseLogin1") %>
- <%= propKey.getStaticString("PleaseLogin2") %>
<% if app.allowGuestLogin() then %>
- <%= propKey.getStaticString("PleaseLoginGuest") %>
<% end if %>
<%= propkey.getStaticString("PleaseLogin3") %>
|
|
|
<%= propKey.getStaticString("MessageCenter") %>
|
|
<%= propKey.getStaticString("MessageCenter1") %>
|
<%
applistErrorString = Session("NFuse_applistError")
If Len(Request.QueryString("NFuse_loginErrorId")) > 0 And Len(applistErrorString) > 0 Then
Response.write " "
Response.write applistErrorString
Response.write ""
Session("NFuse_applistError") = null
End If
%>
|
|
|
|
|
|