使用下面的代理,如何将username域中的OU1取出?
……
Set view = db.GetView( "XXX " )
Set doc = view.GetFirstDocument
While Not ( doc Is Nothing )
------解决方案--------------------
eval = Session.Evaluate( "@Name([OU1];username) ", doc)
可以实现你要的.
------解决方案--------------------
正如: sky0321()所说的,
eval = Session.Evaluate( "@Name([OU1];username) ", doc)
可以实现你要的.