extract子字符串在查找字段-sharepoint 2010上不起作用

时间:2011-12-05 23:59:53

标签: sharepoint-2010 sharepoint-workflow

当我尝试从列表中的查找字段中提取子字符串时,当我使用nonlookup字段时,它不会得到任何东西(使用工作流)。 知道如何解决这个问题。我错过了什么。

1 个答案:

答案 0 :(得分:0)

使用SPFieldLookupValue类。

您可以使用LookupValue和LookupId这两个属性从字段中提取值,没有其他需要提取子字符串。

SPFieldLookupValue lookup = new SPFieldLookupValue(item["fieldName"] as string);
        lookup.LookupValue;
        lookup.LookupId;

希望这有帮助。