日期:2014-05-18 浏览次数:20625 次
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
<script language="javascript" type="text/javascript">
function DisplayText()
{
    document.getElementById("txtDisplay").value = document.getElementById("ddSelect").value;
    document.getElementById("txtDisplay").focus();
}
</script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
         
        <asp:TextBox style="width:120px;position:absolute"  ID="txtDisplay" runat="server"></asp:TextBox>
        <asp:DropDownList ID="ddSelect" style="width:140px"  runat="server">
            <asp:ListItem Value="test1" >test1</asp:ListItem>
            <asp:ListItem Value="test2">test2</asp:ListItem>
        </asp:DropDownList>
    </form>
</body>
</html>