xref: /trunk/main/sd/res/webview/webview.asp (revision 5b501c92)
1cdf0e10cSrcweir<%
2cdf0e10cSrcweir    Option Explicit
3cdf0e10cSrcweir    Response.Expires = 0
4cdf0e10cSrcweir%>
5*5b501c92SAndrew Rist<!--***********************************************************
6*5b501c92SAndrew Rist *
7*5b501c92SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
8*5b501c92SAndrew Rist * or more contributor license agreements.  See the NOTICE file
9*5b501c92SAndrew Rist * distributed with this work for additional information
10*5b501c92SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
11*5b501c92SAndrew Rist * to you under the Apache License, Version 2.0 (the
12*5b501c92SAndrew Rist * "License"); you may not use this file except in compliance
13*5b501c92SAndrew Rist * with the License.  You may obtain a copy of the License at
14*5b501c92SAndrew Rist *
15*5b501c92SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
16*5b501c92SAndrew Rist *
17*5b501c92SAndrew Rist * Unless required by applicable law or agreed to in writing,
18*5b501c92SAndrew Rist * software distributed under the License is distributed on an
19*5b501c92SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20*5b501c92SAndrew Rist * KIND, either express or implied.  See the License for the
21*5b501c92SAndrew Rist * specific language governing permissions and limitations
22*5b501c92SAndrew Rist * under the License.
23*5b501c92SAndrew Rist *
24*5b501c92SAndrew Rist ***********************************************************-->
25cdf0e10cSrcweir
26cdf0e10cSrcweir<!-- #include file = "common.inc" -->
27cdf0e10cSrcweir
28cdf0e10cSrcweir<%
29cdf0e10cSrcweir    Session( "GIFID" ) = File_getDataVirtual( csFileCurrent, ".", ";" )( 0 )
30cdf0e10cSrcweir%>
31cdf0e10cSrcweir
32cdf0e10cSrcweir<HTML>
33cdf0e10cSrcweir
34cdf0e10cSrcweir<HEAD>
35cdf0e10cSrcweir</HEAD>
36cdf0e10cSrcweir
37cdf0e10cSrcweir<FRAMESET ROWS="*,2" BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>
38cdf0e10cSrcweir	<FRAME SRC="./show.asp" NAME="frame1" SCROLLING=yes  RESIZE MARGINWIDTH=0 MARGINHEIGHT=0 FRAMEBORDER=0>
39cdf0e10cSrcweir	<FRAME SRC="./poll.asp" NAME="frame2" SCROLLING=no NORESIZE MARGINWIDTH=0 MARGINHEIGHT=0 FRAMEBORDER=0>
40cdf0e10cSrcweir</FRAMESET>
41cdf0e10cSrcweir
42cdf0e10cSrcweir<NOFRAMES>
43cdf0e10cSrcweir
44cdf0e10cSrcweir<BODY BGCOLOR="white">
45cdf0e10cSrcweir    <META HTTP-EQUIV="-REFRESH" CONTENT="1;URL=./show.asp">
46cdf0e10cSrcweir</BODY>
47cdf0e10cSrcweir
48*5b501c92SAndrew Rist</HTML>
49