Hello,
I want to display Profile.FirstName first but if it is empty need to display Profile.UserName. Something like this.
But this does not work.
<li>Hello <%= (Profile.FirstName == null) ? Profile.FirstName : Profile.UserName %></li>
Any idea?
Go to the complete details ...