写代码时遇到的一个异常信息
asp代码部分<asp:DropDownList ID="DropDownList1" runat="server" Width ="100px" AutoPostBack ="true" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" >
<asp:ListItem>baidu</asp:ListItem>
<asp:ListItem>google</asp:ListItem>
<asp:ListItem>163</asp:ListItem>
<asp:ListItem>sina</asp:ListItem>
</asp:DropDownList>
<asp:Label ID="Label1" runat ="server" Text ="baidu" Width ="150px" ></asp:Label>
后台代码Label1.Text = DropDownList1.SelectedItem.Text;这一句总是出现NullReferenceException
不知道到底是怎么回事,是哪里的值不能传递呢
小弟刚学,请大家指点