看一下,兩個數據都是從表中獲得的,怎麼實現切換DropDownList,然後label的數據也實時更新呢?
現在,數據庫的姓名,已經綁定到了DropDownList,但label不實時更新。
學生新人,求大神詳解
dropdownlist增加一個 AutoPostBack="true"就行了,要不自己用js更新,不需要刷新頁面
<script>
function setLabel(v) {
document.getElementById('Label1').innerHTML = v;
}
</script>
<asp:DropDownList ID="ddl" runat="server" onchange="setLabel(this.value)"></asp:DropDownList>