How to cancel binding ObjectDataSource ?
        Posted  
        
            by nCdy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by nCdy
        
        
        
        Published on 2010-03-24T06:44:25Z
        Indexed on 
            2010/03/24
            6:53 UTC
        
        
        Read the original article
        Hit count: 645
        
CheckPara is my OnDataBinding procedure
SqlDataSource1 is ObjectDataSource (it's only confusing name)
Language is Nemerle, but if you know C# you can read it easy
  protected virtual CheckPara(_ : object,  _ : System.EventArgs) : void
      {
        foreach(x is Parameter in SqlDataSource1.SelectParameters)
            when(x.DefaultValue=="") //Cancel binding
      }
so how can I cancel binding when there is not fully configurated ObjectDataSource ?
Or... how can I run binding only when I done with all parameters ?
© Stack Overflow or respective owner