Dispaly null values in a repeater control

  • Thread starter Thread starter natin
  • Start date Start date
N

natin

Hi

I have a stored procedure that returns null values. How can i display
the null values in my repeater control. Is there a .Net function out
there that i can use.

Regards
Natin
 
I think you need to write ItemDataBound handler in which you can compare and
print accordingly. Alternatively you can also use <%# %> to write your check
and display logic in aspx file.
 
Back
Top