• AJAX


    类型“system.web.ui.updatepanel” 不具有名为“***”的公共属性,
    其实原因很简单。就是少了一个<ContentTemplate></ContentTemplate>

    <asp:UpdatePanel ID="UpdatePanel1" runat="server">


    <asp:DropDownList ID="ddlUsed" runat="server">
                        <asp:ListItem Text="百度" Value="-1"></asp:ListItem>
                        <asp:ListItem Text="谷歌" Value="0"></asp:ListItem>
                        <asp:ListItem Text="新浪" Value="1"></asp:ListItem>
                    </asp:DropDownList>

    </asp:UpdatePanel>


    正确的如下:

    <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                <ContentTemplate>
                  asp:DropDownList ID="ddlUsed" runat="server">
                        <asp:ListItem Text="百度" Value="-1"></asp:ListItem>
                        <asp:ListItem Text="谷歌" Value="0"></asp:ListItem>
                        <asp:ListItem Text="新浪" Value="1"></asp:ListItem>
                    </asp:DropDownList>      

               </ContentTemplate>    

      </asp:UpdatePanel>

  • 相关阅读:
    软件质量属性简述
    浅谈MVC架构
    SOA整理
    程序员的自我修养阅读笔记3
    程序员的自我修养阅读笔记2
    程序员的自我修养阅读笔记1
    架构漫谈阅读笔记3
    架构漫谈阅读笔记2
    Weather APP
    php通过==和!==比较NULL和''结果均为真
  • 原文地址:https://www.cnblogs.com/KTblog/p/4689168.html
Copyright © 2020-2023  润新知