市长热线演示版

outsysurl.aspx 861B

123456789101112131415161718192021
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="outsysurl.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.outsysurl" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <script type="text/javascript">
  7. function Init() {
  8. //window.open(document.getElementById("hfUrl").value);
  9. document.getElementById("frameouturl").src = document.getElementById("hfUrl").value;
  10. }
  11. </script>
  12. </head>
  13. <body onload="Init();">
  14. <form id="form1" runat="server"><asp:HiddenField ID="hfUrl" Value="" runat="server"></asp:HiddenField>
  15. <iframe id="frameouturl" runat="server" src="" height="100%" width="100%" frameborder="0"></iframe>
  16. </form>
  17. </body>
  18. </html>