Click here to Skip to main content
15,916,527 members
Home / Discussions / C#
   

C#

 
QuestionC# Newbie needs help with Error Pin
wedtm19-Dec-06 22:47
wedtm19-Dec-06 22:47 
AnswerRe: C# Newbie needs help with Error [modified] Pin
althamda19-Dec-06 23:04
althamda19-Dec-06 23:04 
QuestionError?!! Pin
Nafiseh Salmani19-Dec-06 22:10
Nafiseh Salmani19-Dec-06 22:10 
AnswerRe: Error?!! Pin
Guffa19-Dec-06 22:26
Guffa19-Dec-06 22:26 
GeneralRe: Error?!! Pin
Nafiseh Salmani19-Dec-06 23:37
Nafiseh Salmani19-Dec-06 23:37 
AnswerRe: Error?!! Pin
Guffa20-Dec-06 1:47
Guffa20-Dec-06 1:47 
GeneralRe: Error?!! Pin
Dave Kreskowiak20-Dec-06 6:02
mveDave Kreskowiak20-Dec-06 6:02 
GeneralRe: Error?!! Pin
Nafiseh Salmani21-Dec-06 23:19
Nafiseh Salmani21-Dec-06 23:19 
QuestionInvoking events on a different thread... Pin
Shy Agam19-Dec-06 22:03
Shy Agam19-Dec-06 22:03 
AnswerRe: Invoking events on a different thread... Pin
Tristan Rhodes20-Dec-06 0:41
Tristan Rhodes20-Dec-06 0:41 
GeneralRe: Invoking events on a different thread... Pin
Shy Agam20-Dec-06 2:16
Shy Agam20-Dec-06 2:16 
GeneralRe: Invoking events on a different thread... Pin
Tristan Rhodes20-Dec-06 2:30
Tristan Rhodes20-Dec-06 2:30 
GeneralRe: Invoking events on a different thread... Pin
Shy Agam20-Dec-06 2:37
Shy Agam20-Dec-06 2:37 
GeneralRe: Invoking events on a different thread... Pin
Tristan Rhodes20-Dec-06 3:10
Tristan Rhodes20-Dec-06 3:10 
GeneralRe: Invoking events on a different thread... Pin
Shy Agam20-Dec-06 3:23
Shy Agam20-Dec-06 3:23 
GeneralRe: Invoking events on a different thread... Pin
Tristan Rhodes20-Dec-06 3:35
Tristan Rhodes20-Dec-06 3:35 
GeneralRe: Invoking events on a different thread... Pin
Shy Agam20-Dec-06 3:47
Shy Agam20-Dec-06 3:47 
GeneralRe: Invoking events on a different thread... Pin
Tristan Rhodes20-Dec-06 3:56
Tristan Rhodes20-Dec-06 3:56 
Questiondll getting updated on clients Pin
fmardani19-Dec-06 22:02
fmardani19-Dec-06 22:02 
QuestionAxShockwaveFlash Pin
Nafiseh Salmani19-Dec-06 21:59
Nafiseh Salmani19-Dec-06 21:59 
Questionflash object Pin
Nafiseh Salmani19-Dec-06 21:49
Nafiseh Salmani19-Dec-06 21:49 
AnswerRe: flash object Pin
althamda19-Dec-06 23:07
althamda19-Dec-06 23:07 
GeneralRe: flash object Pin
Nafiseh Salmani19-Dec-06 23:35
Nafiseh Salmani19-Dec-06 23:35 
QuestionXslCompiledTransform problem with special chars Pin
karanba19-Dec-06 21:32
karanba19-Dec-06 21:32 
Hi, I am using XslCompiledTransform class to convert xml files to html with xsl.
Evething is good but when input comes with special char it also convert them to html; like " < to < "

I don't want this. Because I need them in html like

blah blah as it orjinal.

What must I do.

        <br />
        StringBuilder sb = new StringBuilder();        <br />
<br />
        XPathDocument XPathDoc = new XPathDocument(NewsXmlFile);<br />
        <br />
        XslCompiledTransform XslTrans = new XslCompiledTransform();<br />
        XsltSettings settings = new XsltSettings(true, true);        <br />
        XslTrans.Load(Server.MapPath(@"xsl\NewsDefault.xsl"), settings, null);     <br />
<br />
        XmlWriter xtw = XmlTextWriter.Create(sb);                <br />
        XslTrans.Transform(XPathDoc, (XsltArgumentList)null, xtw);        <br />
        uxNewsBody.InnerHtml = sb.ToString();<br />


karanba

QuestionWhat's my IP Address?? Pin
Muammar©19-Dec-06 20:50
Muammar©19-Dec-06 20:50 

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.