% '==================================================
' Microsoft Server Appliance
'
' Serves task wizard/propsheet frameset
'
' Copyright (c) Microsoft Corporation. All rights reserved.
'================================================== %>
<%
if SA_IsIE() Then
Response.Write(Server.HTMLEncode(Request.QueryString("Title")))
Else
Response.Write(UTF8ToUnicode(Request.QueryString("Title")))
End If
%>
<%
Dim strURL
strURL = Request.QueryString("URL")
if InStr(strURL, "?") = 0 then
'? not found in URL
strURL = strURL & "?"
else
strURL = strURL & "&"
end if
strURL = strURL & "ReturnURL=" & Server.URLEncode(Request.QueryString("ReturnURL"))
SA_StoreTableParameters()
%>