| 123456789101112131415161718192021 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="outsysurl.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.outsysurl" %>
- <!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></title>
- <script type="text/javascript">
- function Init() {
- //window.open(document.getElementById("hfUrl").value);
- document.getElementById("frameouturl").src = document.getElementById("hfUrl").value;
- }
- </script>
- </head>
- <body onload="Init();">
- <form id="form1" runat="server"><asp:HiddenField ID="hfUrl" Value="" runat="server"></asp:HiddenField>
- <iframe id="frameouturl" runat="server" src="" height="100%" width="100%" frameborder="0"></iframe>
- </form>
- </body>
- </html>
|