日期:2014-05-16 浏览次数:20894 次
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="index.aspx.cs" Inherits="index" %>
<!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 id="Head1" >
    <title>无标题页</title>
<script language="javascript" type="text/javascript">
    
function getData()
{
   document.getElementById("dpdl").options.add(new Option("1","2"));
}
</script>
</head>
<body>
   <form id="form1" runat="server">
   
   
   <asp:DropDownList ID="dpdl"  AutoPostBack="true"  runat="server">
   </asp:DropDownList>
   
   <input id="Submit1" type="submit" onclick="getData()"/>
   </form>
</body>
</html>