A
Andrew Robinson
Does the DataObjectFieldAttribute have any affect on the GridView by way of
an ODS?
In partuculare, I was hoping that the max length of a text box within a
gridview would be set to the length property of the attribute but it seems
to have no affect. Any info would be helpful. Thanks,
public class CustomerEntity {
[DataObjectField(false, false, false, 25)]
public String FirstName {
get { return firstName; }
set { firstName = value; }
}
an ODS?
In partuculare, I was hoping that the max length of a text box within a
gridview would be set to the length property of the attribute but it seems
to have no affect. Any info would be helpful. Thanks,
public class CustomerEntity {
[DataObjectField(false, false, false, 25)]
public String FirstName {
get { return firstName; }
set { firstName = value; }
}