EDN Admin
Well-known member
Hi,
i am creating xml using XmlTextWriter in my code. My problem is that under every parent node, i have to create a child node whose value should be a link. when user clicks on that link, he will be redirected to a diferent application. How can i achieve this.
i am writing my other nodes using below code:
writer.WriteElementString("Pages",Convert.ToString(pageCount));
writer.WriteElementString("DocID", items[count].ItemName);
Thanks in advance.
View the full article
i am creating xml using XmlTextWriter in my code. My problem is that under every parent node, i have to create a child node whose value should be a link. when user clicks on that link, he will be redirected to a diferent application. How can i achieve this.
i am writing my other nodes using below code:
writer.WriteElementString("Pages",Convert.ToString(pageCount));
writer.WriteElementString("DocID", items[count].ItemName);
Thanks in advance.
View the full article