我想问下,我在dropdownlist里面用DropDownList1.Items.Add(new ListItem("普通","0"));
            DropDownList1.Items.Add(new ListItem("紧急","1"));
            DropDownList1.Items.Add(new ListItem("重要","2"));
的语句定义优先级别,然后另一个页面用gridview绑定。为什么页面显示的是0、1、2之类的数字,而不是普通,紧急、重要之类的汉字呢?