/ Published in: C#
So if the ID contains the word Spouse, do x.
Expand |
Embed | Plain Text
string Assignee = (rbList.ID.IndexOf("Spouse") == -1) ? "Member" : "Spouse";
You need to login to post a comment.
housecor on 09/08/10
1 person have marked this snippet as a favorite
So if the ID contains the word Spouse, do x.
string Assignee = (rbList.ID.IndexOf("Spouse") == -1) ? "Member" : "Spouse";
You need to login to post a comment.