当我尝试从列表中的查找字段中提取子字符串时,当我使用nonlookup字段时,它不会得到任何东西(使用工作流)。 知道如何解决这个问题。我错过了什么。
答案 0 :(得分:0)
使用SPFieldLookupValue类。
您可以使用LookupValue和LookupId这两个属性从字段中提取值,没有其他需要提取子字符串。
SPFieldLookupValue lookup = new SPFieldLookupValue(item["fieldName"] as string);
lookup.LookupValue;
lookup.LookupId;
希望这有帮助。