日期:2014-05-18 浏览次数:20547 次
<html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>无标题页</title> <script type="text/javascript"> function change(){ var a = document.getElementById("ddlcplb").options[document.getElementById("ddlcplb").selectedIndex].value; var b = document.getElementById("ddlpp").options[document.getElementById("ddlpp").selectedIndex].value; window.showModalDialog("B.aspx?cplb=" + a + "&pp=" + b,'','DialogHeight=650px;DialogWidth=900px;center=1;status=0;scrolling=1'); } </script> </head> <body> <form id="form1" runat="server"> <div> <asp:DropDownList ID="ddlcplb" runat="server"> <asp:ListItem Value="1">1</asp:ListItem> <asp:ListItem Value="2">2</asp:ListItem> </asp:DropDownList> <asp:DropDownList ID="ddlpp" runat="server"> <asp:ListItem Value="3">3</asp:ListItem> <asp:ListItem Value="4">4</asp:ListItem> </asp:DropDownList> <asp:CheckBox ID="lbnxzxh" runat="server" /> </div> </form> </body> </html>