Click here to Skip to main content
15,893,904 members
Home / Discussions / C#
   

C#

 
QuestionUploading two files Pin
minniemooo15-Aug-07 2:52
minniemooo15-Aug-07 2:52 
QuestionOpen a text file, apply formatting(inclulding color) before it displays in RichTextBox Pin
solutionsville15-Aug-07 2:18
solutionsville15-Aug-07 2:18 
QuestionModifying an existing file Pin
Rocky#15-Aug-07 1:40
Rocky#15-Aug-07 1:40 
AnswerRe: Modifying an existing file Pin
led mike15-Aug-07 4:13
led mike15-Aug-07 4:13 
GeneralRe: Modifying an existing file Pin
Rocky#15-Aug-07 4:58
Rocky#15-Aug-07 4:58 
GeneralRe: Modifying an existing file Pin
led mike15-Aug-07 5:15
led mike15-Aug-07 5:15 
GeneralRe: Modifying an existing file Pin
Rocky#15-Aug-07 18:45
Rocky#15-Aug-07 18:45 
GeneralRe: Modifying an existing file Pin
Rocky#15-Aug-07 18:59
Rocky#15-Aug-07 18:59 
There's still a small problem.. The example is given like this
//Create a new XslTransform object.<br />
XslTransform xslt = new XslTransform();<br />
<br />
//Load the stylesheet.<br />
xslt.Load("http://server/favorite.xsl");<br />
<br />
//Create a new XPathDocument and load the XML data to be transformed.<br />
XPathDocument mydata = new XPathDocument("inputdata.xml");<br />
<br />
//Create an XmlTextWriter which outputs to the console.<br />
XmlWriter writer = new XmlTextWriter(Console.Out);<br />
<br />
//Transform the data and send the output to the console.<br />
xslt.Transform(mydata,null,writer, null);<br />
<br />


The XmlWriter is throwing its output on the console but how can i throw the output on my webbrowser control w/o making a new file? the transormation doesnt create HTML it only chnges the way XML is diaplayed. infact it just collapses all the nodes
GeneralRe: Modifying an existing file Pin
led mike16-Aug-07 4:54
led mike16-Aug-07 4:54 
GeneralRe: Modifying an existing file Pin
Rocky#16-Aug-07 19:34
Rocky#16-Aug-07 19:34 
GeneralRe: Modifying an existing file Pin
led mike17-Aug-07 5:05
led mike17-Aug-07 5:05 
GeneralRe: Modifying an existing file Pin
Rocky#17-Aug-07 19:21
Rocky#17-Aug-07 19:21 
QuestionWindows Forms GUI App to Windows App Pin
VK-Cadec15-Aug-07 1:18
VK-Cadec15-Aug-07 1:18 
AnswerRe: Windows Forms GUI App to Windows App Pin
Scott Dorman15-Aug-07 3:53
professionalScott Dorman15-Aug-07 3:53 
GeneralRe: Windows Forms GUI App to Windows App Pin
VK-Cadec15-Aug-07 3:57
VK-Cadec15-Aug-07 3:57 
GeneralRe: Windows Forms GUI App to Windows App Pin
Scott Dorman15-Aug-07 4:34
professionalScott Dorman15-Aug-07 4:34 
QuestionPlease help me in login logic Pin
Mohammed Elkholy15-Aug-07 1:10
Mohammed Elkholy15-Aug-07 1:10 
AnswerRe: Please help me in login logic Pin
Christian Graus15-Aug-07 1:15
protectorChristian Graus15-Aug-07 1:15 
Questioncompare binary with binary in C# Pin
amin_ramin888615-Aug-07 1:05
amin_ramin888615-Aug-07 1:05 
AnswerRe: compare binary with binary in C# Pin
Guffa15-Aug-07 2:31
Guffa15-Aug-07 2:31 
GeneralRe: compare binary with binary in C# Pin
amin_ramin888615-Aug-07 22:06
amin_ramin888615-Aug-07 22:06 
AnswerRe: compare binary with binary in C# Pin
Guffa16-Aug-07 2:15
Guffa16-Aug-07 2:15 
Question[C#] - Combining several projects Pin
aravinda77715-Aug-07 0:25
aravinda77715-Aug-07 0:25 
AnswerRe: [C#] - Combining several projects Pin
Christian Graus15-Aug-07 0:48
protectorChristian Graus15-Aug-07 0:48 
AnswerRe: [C#] - Combining several projects Pin
Scott Dorman15-Aug-07 4:07
professionalScott Dorman15-Aug-07 4:07 

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.