首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

“DropDownList1”有一个无效 SelectedValue,该怎么解决

2012-02-28 
“DropDownList1”有一个无效 SelectedValue提示错误:“DropDownList1”有一个无效SelectedValue代码:asp:Tem

“DropDownList1”有一个无效 SelectedValue
提示错误:“DropDownList1”有一个无效   SelectedValue
代码:
    <asp:TemplateField   HeaderText= "unit "   SortExpression= "unit ">
                                <EditItemTemplate>
                                        <asp:DropDownList   ID= "DropDownList1 "   runat= "server "   SelectedValue= ' <%#   Bind( "unit ")   %> '
                                                Width= "75px " ">
                                                <asp:ListItem   Value= "PCS "     Selected=True     > PCS </asp:ListItem>
                                                <asp:ListItem   Value= "DZ "   > DZ </asp:ListItem>
                                        </asp:DropDownList>
                                </EditItemTemplate>
                                <ItemTemplate>
                                        <asp:Label   ID= "Label1 "   runat= "server "   Text= ' <%#   Bind( "unit ")   %> '> </asp:Label>
                                </ItemTemplate>
                        </asp:TemplateField>

[解决办法]
<asp:DropDownList ID= "DropDownList1 " runat= "server " SelectedValue= ' <%# Bind( "unit ") %> '
Width= "75px " ">
<asp:ListItem Value= "PCS " Selected=True > PCS </asp:ListItem


?????!!!!!!!!!!!!!!

热点排行