- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
You just need to do a Null check .
var first = form1.Subform1.FirstName.rawValue;
var last = form1.Subform1.LastName.rawValue;
if(first != null && last != null){
this.rawValue = first + " " + last;
}
Vjay
Views
Replies
0 Likes
Total Likes