I'm have a field for one of my page types called "CategoryGUID", I'm trying to retrieve this value. I can get the node, but when I try and retrieve this fields value I get null each time.
I've tried node["CategoryGUID"] and node.GetValue("CategoryGUID")
Neither will return the value. But if I click on the node and go to the form tab. I can see the field has data in the text box field.
Yes you can use that or specify a node id node[id][columnname]. I like your approach better personally.
node[id][columnname]
So I needed to use SelectSingleNode and then the fields showed up.
Please, sign in to be able to submit a new answer.