<%#((TextBox)gvSection.Rows[Container.DataItemIndex].FindControl("txtStartDate")).ClientID %> 这样的绑定
报这样的错Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index 
请问是为什么?就算我换成这样也是一样
  public string getStartTimeClientID(int i)
    {
        return ((TextBox)gvSection.Rows[i].FindControl("txtStartDate")).ClientID; 
    }
绑定<%# getStartTimeClientID(Container.DataItemIndex)%>   依然一样  调试的时候  i=0的时候都报错 请问要怎么弄 谢谢