Click here to Skip to main content
15,907,281 members
Home / Discussions / XML / XSL
   

XML / XSL

 
QuestionXML with xsd Pin
anil@kalkitech.in3-Jul-06 21:06
anil@kalkitech.in3-Jul-06 21:06 
QuestionXML search Pin
dzthomas3-Jul-06 6:03
dzthomas3-Jul-06 6:03 
AnswerRe: XML search Pin
Igor Sukhov3-Jul-06 18:45
Igor Sukhov3-Jul-06 18:45 
QuestionProblem using expressions Pin
sishya2-Jul-06 20:06
sishya2-Jul-06 20:06 
QuestionMaking Elements have custom fomatting Pin
relaeir1-Jul-06 11:52
relaeir1-Jul-06 11:52 
Questionwrite the xml contents into text box [modified] Pin
mehnazash29-Jun-06 19:13
mehnazash29-Jun-06 19:13 
AnswerRe: write the xml contents into text box Pin
Bluebamboo30-Jun-06 1:30
Bluebamboo30-Jun-06 1:30 
AnswerRe: write the xml contents into text box Pin
DIMPLE_R6-Jul-06 20:15
DIMPLE_R6-Jul-06 20:15 
Try this in your code-behind file:

string strPath = "xmlFolder/MyXMLFile.xml";
StreamReader objSR = new StreamReader(Server.MapPath(strPath), Encoding.Default);
string strSRcontent = objSR.ReadToEnd();
Textbox1.Text = strSRcontent;

--Dimple
QuestionCrazy Characters [modified] Pin
braber29-Jun-06 7:31
braber29-Jun-06 7:31 
AnswerRe: Crazy Characters Pin
Dustin Metzgar29-Jun-06 7:49
Dustin Metzgar29-Jun-06 7:49 
QuestionXPath Q: How to select into a NodeList? Pin
matthias s.29-Jun-06 5:24
matthias s.29-Jun-06 5:24 
AnswerRe: XPath Q: How to select into a NodeList? Pin
Dustin Metzgar29-Jun-06 5:50
Dustin Metzgar29-Jun-06 5:50 
GeneralRe: XPath Q: How to select into a NodeList? Pin
matthias s.29-Jun-06 6:20
matthias s.29-Jun-06 6:20 
Questionwhere did the whitespace go? [modified] Pin
Bluebamboo29-Jun-06 5:09
Bluebamboo29-Jun-06 5:09 
AnswerRe: where did the whitespace go? Pin
Dustin Metzgar29-Jun-06 5:48
Dustin Metzgar29-Jun-06 5:48 
GeneralRe: where did the whitespace go? Pin
Bluebamboo29-Jun-06 6:01
Bluebamboo29-Jun-06 6:01 
GeneralRe: where did the whitespace go? Pin
Dustin Metzgar29-Jun-06 6:48
Dustin Metzgar29-Jun-06 6:48 
GeneralRe: where did the whitespace go? Pin
Bluebamboo29-Jun-06 9:59
Bluebamboo29-Jun-06 9:59 
GeneralRe: where did the whitespace go? Pin
Dustin Metzgar29-Jun-06 10:27
Dustin Metzgar29-Jun-06 10:27 
GeneralRe: where did the whitespace go? [modified] Pin
Bluebamboo29-Jun-06 11:51
Bluebamboo29-Jun-06 11:51 
GeneralRe: where did the whitespace go? Pin
Dustin Metzgar29-Jun-06 14:03
Dustin Metzgar29-Jun-06 14:03 
GeneralRe: where did the whitespace go? Pin
Bluebamboo29-Jun-06 14:57
Bluebamboo29-Jun-06 14:57 
GeneralRe: where did the whitespace go? Pin
Dustin Metzgar30-Jun-06 3:01
Dustin Metzgar30-Jun-06 3:01 
GeneralRe: where did the whitespace go? Pin
Tuwing.Sabado3-Jul-06 19:59
Tuwing.Sabado3-Jul-06 19:59 
GeneralRe: where did the whitespace go? Pin
Bluebamboo4-Jul-06 0:28
Bluebamboo4-Jul-06 0:28 

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.