文本框在当前上下文中不存在

时间:2012-11-18 14:55:41

标签: c# asp.net umbraco

我的代码有问题。下面是一个简单的例子,没有很多不必要的html标签。只有重要的事情,才能显示问题。

当我进入页面时,我收到了错误:

  

创建usercontrol时出错   (用户控件/自己/ profilEdit.ascx)
C:\的Inetpub \ wwwroot的\一把umbraco \用户控件\自己\ profilEdit.ascx(705):   错误CS0103:当前名称'satbCountry'不存在   上下文


这个错误与<script>代码有关(无论如何这个js代码是正确的,在另一个子页面上工作正常,但是当这个代码在页面上时,它会崩溃)。为什么我收到这条消息?



这里代码:

                <asp:View ID="vSpecialist" runat="server">

                    <asp:UpdatePanel ID="UpdatePanel3" runat="server">
                        <ContentTemplate>

                         (..)    

        <asp:ListView runat="server" ID="lvAddressess" ItemPlaceholderID="phAddress" OnItemDataBound="lvAddressess_ItemDataBound">
   <LayoutTemplate> 
<asp:PlaceHolder ID="phAddress" runat="server"></asp:PlaceHolder>

  </LayoutTemplate>
                <ItemTemplate>
              <script>
              var input = document.getElementById('<%=satbCountry.ClientID %>');
              var options = {
                  types: ['(regions)']
              };
              var autocomplete = new google.maps.places.Autocomplete(input, options);

              </script>
              <asp:TextBox CssClass="textbox"  type="text" runat="server" ID="satbCountry"></asp:TextBox>

                            </ItemTemplate>
                        </asp:ListView>


                    </ContentTemplate>
        </asp:UpdatePanel>

            </asp:View>

1 个答案:

答案 0 :(得分:3)

我认为这是因为satbCountry是在模板中定义的(即可以重复多次)。要获取此控件的clientID,您需要使用服务器端代码找到每个实例(例如,使用FindControl("satbCountry"),然后获取客户端ID。

简而言之,您需要删除要加载的页面document.getElementById('<%=satbCountry.ClientID %>');,然后替换为

document.getElementById('<%# Container.FindControl("satbCountry").ClientID %>');