Sorry for late reply.
This was the code i used on the server side and it was working fine there. But how do I implement it on client side??
// Load the XML file.
XmlDocument dom = new XmlDocument();
dom.Load(Server .MapPath("../Resource/DocumentList.xm l"));
this.DocListTre e.Nodes.Clear() ;
XmlNode xNode = dom.SelectSingl eNode("document s/transactions/"...
User Profile
Collapse
-
Hi
You can have a hidden control on your parent form, say htxtTextbox
now add a javascript for the click of the link.
In the script you can do the following:
function xyz(pass parameters that you want to take from pop up window)
{
window.opener.d ocument.Form1.h txtTextbox.valu e ="parameters in the function" ;
window.opener.d ocument.Form1.s ubmit();
window.close();...Leave a comment:
-
add node to TreeView in Javascript
Hi,
I want to add a node to tree view control on my web form from javascript.
Con anyone help? -
create embedded word document in asp.net
Hi,
I have been trying to open a word document on a button click event in C#
This is the code I am trying to use
object fileName = "C:\\test.d oc";
object readOnly = false;
object isVisible = true;
object missing = System.Reflecti on.Missing.Valu e;
Word.Applicatio nClass oWordApp = new Word.Applicatio nClass();
Word.Document oWordDoc = oWordApp.Docume nts.Open(ref... -
how to pass binary data in xml
I want to create a new xml document of the type Msxml.DOMDocume nt.4.0
Actaully In have to transfer some binary data in xml which requires to specify the dataType member of the xml node( which is not present in simple xml document).
I am new to xml. Kindly help.
No activity results to display
Show More
Leave a comment: