getting the maxlength of attribute

Posts   
 
    
mafti
User
Posts: 38
Joined: 27-Oct-2004
# Posted on: 25-Nov-2004 11:50:59   

Hi,

for my asp.net application i have a form where i can fill in a entity. with validators ofcourse. now i use mostly regularexpressions for my validation.

for an entity-attribute i want to check the length also. is there a way that i can get the maxlength of an attribute???

i don't like to grab an exception and put it on the screen.

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39833
Joined: 17-Aug-2003
# Posted on: 25-Nov-2004 12:06:02   

for example:

// adapter: int maxLength = myCustomer.Fields[(int)CustomerFieldIndex.CompanyName].MaxLength;

// selfservicing: int maxLength = myCustomer.Fields[(int)CustomerFieldIndex.CompanyName].SourceColumnMaxLength;

Frans Bouma | Lead developer LLBLGen Pro