-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbrowser.aspx
More file actions
33 lines (25 loc) · 1.24 KB
/
Copy pathbrowser.aspx
File metadata and controls
33 lines (25 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="browser.aspx.cs" Inherits="browser" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript" src="browser.js"> </script>
</head>
<body onload="f()">
<table style="width:100%;" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#D1D1D1">
<td width="130px">
<img id="back" alt="" src="photos/browser/back.png" onclick="back()" />
<img id="fwd" alt="" src="photos/browser/for.png" onclick="fwd()" />
<img alt="" src="photos/browser/ref.png" onclick="rfrsh()" />
</td>
<td>
<input id="ad" type="text" style="width:98%" /></td>
<td width="110px">
<img alt="" src="photos/browser/go.png" onclick="go()" /><img alt=""
src="photos/browser/home.png" onclick="home()" /></td>
</tr>
</table>
<iframe id="myframe" scrolling="auto" src="http://www.bing.com"></iframe>
</body>
</html>