Hi,
I've uploaded my form to sharepoint, and I'm trying to get the form to edit some of the values. Here's what I did:
public void One_Changed(object sender, XmlEventArgs e)
{
string one = e.Site.Value;
if (one == "Hello")
{
e.Site.SelectSingleNode("../my:Message", NamespaceManager).SetValue("Value is Hello!");
}
else
{
e.Site.SelectSingleNode("../my:Message", NamespaceManager).SetValue("Value is Good Bye!");
e.Site.SelectSingleNode("../my:Two", NamespaceManager).SetValue("");
}
}
However, for some reason, setvalue() works on my desktop, but doesn't on sharepoint. Nothing happens at all. Any ideas why?