mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
985 B
49 lines
985 B
<%@ LANGUAGE = VBScript %>
|
|
<% Option Explicit %>
|
|
<!-- #include file="directives.inc" -->
|
|
|
|
<!--#include file="iiset.str"-->
|
|
|
|
<%
|
|
Dim key
|
|
|
|
' Called by iihd.asp, when opening property sheets.
|
|
|
|
' this is a fairly generic script... we pass in a variety of keys to set our session vars with
|
|
' including, but not limited to: vtype, stype, spath, dpath
|
|
|
|
|
|
|
|
For Each key In Request.QueryString
|
|
'Response.write "KEY:" & key
|
|
'Response.write " VAL:" & Request.QueryString(key) & "<P>"
|
|
Session(key)=Request.QueryString(key)
|
|
Next
|
|
|
|
%>
|
|
|
|
<HTML>
|
|
<BODY>
|
|
|
|
<SCRIPT LANGUAGE="JavaScript">
|
|
<!--#include file="iisetfnt.inc"-->
|
|
<!--#include file="iijsfuncs.inc"-->
|
|
|
|
|
|
if ("<%= Request.QueryString("vtype") %>"=="comp"){
|
|
popBox("computer",<%= L_IICOMP_W %>,<%= L_IICOMP_H %>,"iicomp");
|
|
top.body.iisstatus.location="iistat.asp"
|
|
}
|
|
else{
|
|
path = "ii<%= Request.QueryString("stype") %>.asp?vtype=<%= Request.QueryString("vtype") %>";
|
|
|
|
top.body.location.href=(path);
|
|
}
|
|
|
|
|
|
|
|
</SCRIPT>
|
|
|
|
</BODY>
|
|
</HTML>
|
|
|