zoukankan      html  css  js  c++  java
  • 解決用showModalDialog弹出页面后,form表单提交再次弹出一个新窗口問題

    圖片:

    showModalDialog1.jpg、showModalDialog2.jpg

    default.aspx

    <head >
        <title>default.aspx</title>
        <link href="StyleSheet.css"  type="text/css" rel="stylesheet"/>
         <script type="text/javascript" language="javascript">
             function showIssue() {
                 window.showModalDialog("GoodsMange/Issue.aspx", "", "dialogWidth:800px;dialogHeight:800px;scroll:no;status:no;center:yes");
                 return false;
             }
         </script>
    </head>

    <body>

      <asp:ImageButton ID="imgbtnOutManage" runat="server"      ImageUrl="~/image/IssueItem.gif"                                                      OnClientClick="showIssue();"   />

    </body>

    Issue.aspx

    <head runat="server">
        <title>Issue.aspx</title>
        <base target="_self" />
    </head>

    <body>

     <asp:Button ID="btnAdd" runat="server" Text="出 庫"  OnClick="btnAdd_Click" PostBackUrl="#" />

    <asp:ImageButton ID="linkFirstPage" runat="server" ImageUrl="~/image/pg-first.gif"    PostBackUrl="#"  onclick="linkFirstPage_Click" />

    </body>

  • 相关阅读:
    软件评价——360安全卫士
    对于软件工程课程的疑问
    附加作业
    个人最终总结
    结对编程 电梯调度程序
    读程序作业
    VS2015 单元测试
    VS2015 的安装过程
    四则运算程序
    对于软件的点评
  • 原文地址:https://www.cnblogs.com/Snowfun/p/1914229.html
Copyright © 2011-2022 走看看