I'm now trying to use a gridview to edit the membership table, but I can't seem to render the islockedout column in a checkboxfield.
I get the message "The data in the checkboxfield "islockedout" could not be parsed as a boolean value"
This table was created by your script "InstallWebTables.sql" and is of type tinyint.
Perhaps I should use another approach, some help on this would be appreciatted
Code: Select all
            
                
                
                   
            
        
        " 
        ProviderName="" 
        SelectCommand="SELECT aspnet_membership.* FROM aspnet_membership" 
        UpdateCommand="UPDATE aspnet_membership SET email =?, islockedout =? WHERE userid =?"
         >