Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
Using NullDisplayText  
BoundField bField = new BoundField();
                bField.ItemStyle.Wrap = false;
bField.DataField = "ProjectID"
bField.NullDisplayText = "NO";
GVProjects.Columns.Add(bField);


It does not display NullDisplayText = "NO" .

Please if anyone help?
Posted
Updated 4-Jan-13 5:43am
v2
Comments
Member 9581488 4-Jan-13 11:45am    
check what is the value of projectID. Sometimes it returns empty string from database.
Sandeep Mewara 4-Jan-13 11:57am    
What does it display?

1 solution

As per MSDN: The caption displayed for a field when the field's value is null. The default is an empty string (""), which indicates that this property is not set.
Refer: MSDN: BoundField.NullDisplayText Property [^]

Thus, if you don't see 'NO', it might be that the value returned is not NULL. Make sure the query result has value as NULL such that the text representation is correct at front end as you want it to be.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900