Click here to Skip to main content
15,891,744 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: I need a direction about XML/XSL/XSLT etc. Pin
Cristoff15-Apr-06 13:32
Cristoff15-Apr-06 13:32 
Questiongenerate xml view from vb.net Pin
sowbarnika10-Apr-06 6:23
sowbarnika10-Apr-06 6:23 
Questioncount nodes with xpath Pin
eggie58-Apr-06 14:15
eggie58-Apr-06 14:15 
AnswerRe: count nodes with xpath Pin
eggie58-Apr-06 15:13
eggie58-Apr-06 15:13 
QuestionConverting from one line to an indented view Pin
John Owens7-Apr-06 4:12
John Owens7-Apr-06 4:12 
AnswerRe: Converting from one line to an indented view Pin
Michael A. Barnhart14-Apr-06 11:55
Michael A. Barnhart14-Apr-06 11:55 
Questiontrying to provide a user interface for filling in the innertext of an xml document in the web project Pin
Madhur Ahuja7-Apr-06 2:31
Madhur Ahuja7-Apr-06 2:31 
Questionhow to call xml Pin
ybasha6-Apr-06 17:52
ybasha6-Apr-06 17:52 
Hi there,

Iam newbie for c# i like to know how we can load an xml file and read the node inside the xml file earlier my application use to call another appl to get txt file and read the node inside the text file. now i want to pass the xml file instead of the appl so the following are the existing code pls advice how i can do it
Crosswalk_Holdings.Holdings ObjHoldings = new Crosswalk_Holdings.Holdings();
string strresponse ="";
string strMarctxt = "";
XmlNode ObjMarcTxtNode;
//by me 8/2/06
//strresponse = ObjHoldings.SendReceiveXML("http://203.78.8.89/scripts/vista/usmarc11.pl",strBIDNoForHoldings);
XmlDocument ObjXMLHoldings = new XmlDocument();
ObjMarcTxtNode = ObjXMLHoldings.SelectSingleNode("//USMARC/TXT");

if(ObjMarcTxtNode!=null)
{
if (ObjMarcTxtNode.InnerText.Trim()!="")
strMarctxt=Server.HtmlEncode(ObjMarcTxtNode.InnerText);
}
if (strMarctxt !="")
{
string tmpspace = "\n" + " ";
strMarctxt= strMarctxt.Replace(tmpspace, " ");
string strControlNo = ObjHoldings.ParseXML("008 |", strMarctxt).ToString();
if (strControlNo.Trim()!="")
strRecLanguage= strControlNo.Substring(35,3);
string strNativeDelimiter = " ";
//Native Identifier
//ISBN
string strNativeISBN = ObjHoldings.Parse880XML("|020-",strMarctxt).ToString();
//'ISSN
string strNativeISSN = ObjHoldings.Parse880XML("|022-",strMarctxt).ToString();
if (strNativeISBN.Trim()!="" || strNativeISSN.Trim()!="")
{
strNativeIdentifier = (strNativeISBN.Trim().Length>0?strNativeISBN + strNativeDelimiter:"") + strNativeISSN.Trim();
strNativeIdentifier = strNativeIdentifier.Replace("|","");
}

pls advice how i can pass the xml file instead of the url and get info or tag 020 and 022 from the xml file.
we have tag 020 and 022 in the xml file.pls advice
Questionxml to asp Pin
zybernau4-Apr-06 9:16
zybernau4-Apr-06 9:16 
QuestionMy code doesn't work. Help? Pin
SpeBeeTo4-Apr-06 6:02
SpeBeeTo4-Apr-06 6:02 
QuestionProgrammatically adding TabPage Contents into DataGrid from XML File Pin
AnneThorne3-Apr-06 8:27
AnneThorne3-Apr-06 8:27 
Question.NET windowsform XML editor control Pin
pmt1-Apr-06 0:45
pmt1-Apr-06 0:45 
QuestionVML Help??? Pin
Circleoaks30-Mar-06 7:12
Circleoaks30-Mar-06 7:12 
QuestionXML to datagrid WITHOUT FILE Pin
Centivi@29-Mar-06 12:20
Centivi@29-Mar-06 12:20 
AnswerRe: XML to datagrid WITHOUT FILE Pin
George L. Jackson29-Mar-06 17:31
George L. Jackson29-Mar-06 17:31 
GeneralRe: XML to datagrid WITHOUT FILE Pin
Centivi@30-Mar-06 1:48
Centivi@30-Mar-06 1:48 
QuestionAdd XML to an XMLNode Pin
NewbieDude28-Mar-06 1:23
NewbieDude28-Mar-06 1:23 
AnswerRe: Add XML to an XMLNode Pin
George L. Jackson29-Mar-06 17:36
George L. Jackson29-Mar-06 17:36 
GeneralRe: Add XML to an XMLNode Pin
NewbieDude29-Mar-06 19:46
NewbieDude29-Mar-06 19:46 
GeneralRe: Add XML to an XMLNode Pin
imsathy30-Mar-06 1:10
imsathy30-Mar-06 1:10 
QuestionUsing in XML Pin
Beringer27-Mar-06 8:09
Beringer27-Mar-06 8:09 
AnswerRe: Using in XML Pin
George L. Jackson28-Mar-06 10:35
George L. Jackson28-Mar-06 10:35 
AnswerRe: Using in XML Pin
DavidNohejl28-Mar-06 23:20
DavidNohejl28-Mar-06 23:20 
QuestionSchema and Stylesheet Pin
Chetan Ranpariya26-Mar-06 18:50
Chetan Ranpariya26-Mar-06 18:50 
AnswerRe: Schema and Stylesheet Pin
George L. Jackson27-Mar-06 11:33
George L. Jackson27-Mar-06 11:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.