如何在下拉列表中选择默认值 这里是下拉列表
<asp:DropDownList ID="DropDownList4" runat="server" EnableViewState="true"
class="vpb_dropdown" DataTextField="ApproveType" DataValueField="ApproveID"
AutoPostBack="true" OnSelectedIndexChanged="DropDownList4_SelectedIndexChanged">
<asp:ListItem Text="Pending" Value="3"></asp:ListItem>
<asp:ListItem Text="Approve" Value="1"></asp:ListItem>
<asp:ListItem Text="Reject" Value="2"></asp:ListItem>
</asp:DropDownList>
我想选择挂起作为默认..