Click here to Skip to main content
15,917,174 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: Can some body help me this? Pin
Michael Dunn11-Sep-06 7:46
sitebuilderMichael Dunn11-Sep-06 7:46 
AnswerRe: Can some body help me this? Pin
Dustin Metzgar11-Sep-06 3:44
Dustin Metzgar11-Sep-06 3:44 
AnswerRe: Can some body help me this? Pin
biaali12-Sep-06 23:08
biaali12-Sep-06 23:08 
QuestionAdvanced merge of xml documents Pin
Patric_J9-Sep-06 4:36
Patric_J9-Sep-06 4:36 
AnswerRe: Advanced merge of xml documents Pin
led mike11-Sep-06 5:55
led mike11-Sep-06 5:55 
QuestionHow to read attribites from xml and put them in a dropdownlist in Html? Pin
oohungoo8-Sep-06 15:22
oohungoo8-Sep-06 15:22 
QuestionHow to Xml.Serialize an ArrrayList Pin
kozu8-Sep-06 11:34
kozu8-Sep-06 11:34 
AnswerRe: How to Xml.Serialize an ArrrayList Pin
Dustin Metzgar12-Sep-06 4:06
Dustin Metzgar12-Sep-06 4:06 
Either make the list field public or make a read/write property for it.  Xml serialization will not work on private fields.  The reason for this is that the XmlSerializer builds some dynamic types to perform serialization instead of doing it by reflection.  This puts the serialization outside of your namespace and it only has access to what is public.  Which is also why you need a public default constructor.  You also need to use the XmlArrayAttribute:
[XmlArray]
[XmlArrayItem(typeof(Item))]
public ArrayList list;





Logifusion[^]
If not entertaining, write your Congressman.

Questionmicrosoft.xmldom Pin
messages8-Sep-06 4:27
messages8-Sep-06 4:27 
AnswerRe: microsoft.xmldom Pin
led mike8-Sep-06 4:49
led mike8-Sep-06 4:49 
GeneralRe: microsoft.xmldom Pin
messages8-Sep-06 5:08
messages8-Sep-06 5:08 
QuestionXml question ... [modified] Pin
devboycpp8-Sep-06 4:08
devboycpp8-Sep-06 4:08 
AnswerRe: Xml question ... Pin
Dustin Metzgar8-Sep-06 4:46
Dustin Metzgar8-Sep-06 4:46 
GeneralRe: Xml question ... Pin
devboycpp8-Sep-06 5:08
devboycpp8-Sep-06 5:08 
GeneralRe: Xml question ... Pin
Dustin Metzgar8-Sep-06 5:46
Dustin Metzgar8-Sep-06 5:46 
AnswerRe: Xml question ... Pin
led mike8-Sep-06 4:48
led mike8-Sep-06 4:48 
QuestionRe: Xml question ... Pin
devboycpp8-Sep-06 5:37
devboycpp8-Sep-06 5:37 
AnswerRe: Xml question ... Pin
led mike8-Sep-06 6:00
led mike8-Sep-06 6:00 
GeneralRe: Xml question ... Pin
devboycpp8-Sep-06 5:52
devboycpp8-Sep-06 5:52 
GeneralRe: Xml question ... Pin
led mike8-Sep-06 6:03
led mike8-Sep-06 6:03 
AnswerRe: Xml question ... Pin
BoneSoft8-Sep-06 5:57
BoneSoft8-Sep-06 5:57 
QuestionHow to include external XSL File in Main XSL File ? Pin
Rizwan Bashir8-Sep-06 2:58
Rizwan Bashir8-Sep-06 2:58 
AnswerRe: How to include external XSL File in Main XSL File ? Pin
Dustin Metzgar8-Sep-06 3:30
Dustin Metzgar8-Sep-06 3:30 
Questionchanging an attribute [modified] Pin
Ista7-Sep-06 17:10
Ista7-Sep-06 17:10 
QuestionXPathNavigator.Select returns only 1 item Pin
kozu7-Sep-06 16:50
kozu7-Sep-06 16: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.