Click here to Skip to main content
15,912,329 members
Home / Discussions / XML / XSL
   

XML / XSL

 
QuestionHow to Create an XML Editor application tool in C#.NET Pin
debobrata18-Aug-08 23:56
debobrata18-Aug-08 23:56 
AnswerRe: How to Create an XML Editor application tool in C#.NET Pin
tptshepo19-Aug-08 3:27
tptshepo19-Aug-08 3:27 
GeneralRe: How to Create an XML Editor application tool in C#.NET Pin
debobrata19-Aug-08 4:46
debobrata19-Aug-08 4:46 
AnswerRe: How to Create an XML Editor application tool in C#.NET Pin
tptshepo19-Aug-08 9:12
tptshepo19-Aug-08 9:12 
AnswerRe: How to Create an XML Editor application tool in C#.NET Pin
blackjack215019-Aug-08 20:21
blackjack215019-Aug-08 20:21 
GeneralRe: How to Create an XML Editor application tool in C#.NET Pin
debobrata20-Aug-08 0:27
debobrata20-Aug-08 0:27 
QuestionMore than one xsd for a xml validation Pin
vicky0000017-Aug-08 20:36
vicky0000017-Aug-08 20:36 
QuestionHow to generate XML File from table Pin
Abdullah S. Abdelhay17-Aug-08 11:14
Abdullah S. Abdelhay17-Aug-08 11:14 
I have a table in database :

CREATE TABLE [LeftMenu] (
	[NodeID] [int] NOT NULL ,
	[ParentNodeID] [int] NULL ,
	[FK_LangID] [int] NULL ,
	[Text] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
	[lastlevel] [bit] NULL ,
	[linkLevel] [bit] NULL ,
	CONSTRAINT [PK_LeftMenu] PRIMARY KEY  CLUSTERED 
	(
		[NodeID]
	)  ON [PRIMARY] 
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO


and i want to generate XML file from this table with relation between 'NodeID' column and 'ParentNodeID' to fill ASP.net 2 Menu Control or TreeView Control
like this example:
<menu>
  <sub NodeID="1" ParentNodeID="" Text="aaa" />
  <sub NodeID="2" ParentNodeID="" Text="aaa" >
    <sub NodeID="3" ParentNodeID="2" Text="aaa" >
      <sub NodeID="20" ParentNodeID="3" Text="aaa" />
      <sub NodeID="20" ParentNodeID="3" Text="aaa" />
    </sub>
    <sub NodeID="10" ParentNodeID="2" Text="aaa" />
    <sub NodeID="12" ParentNodeID="2" Text="aaa" />
  </sub>
  <sub NodeID="4" ParentNodeID="" Text="aaa" />
  <sub NodeID="5" ParentNodeID="" Text="aaa" />
  <sub NodeID="6" ParentNodeID="" Text="aaa">
    <sub NodeID="14" ParentNodeID="6" Text="aaa" />
  </sub>
  <sub NodeID="7" ParentNodeID="" Text="aaa" />
  <sub NodeID="8" ParentNodeID="" Text="aaa" />
  <sub NodeID="9" ParentNodeID="" Text="aaa" />
</menu>




plz reply me.

Thank you
Abdullah Abdelhay
AnswerRe: How to generate XML File from table Pin
tptshepo19-Aug-08 20:50
tptshepo19-Aug-08 20:50 
Questionxsl not formating xml file correctly into csv file Pin
CodingLover15-Aug-08 16:54
CodingLover15-Aug-08 16:54 
QuestionThe 'http://schemas.xmlsoap.org/soap/envelope/:Envelope' element is not declared Pin
That's Aragon14-Aug-08 0:57
That's Aragon14-Aug-08 0:57 
QuestionHow to define the font types in xsl output. Pin
CodingLover14-Aug-08 0:06
CodingLover14-Aug-08 0:06 
QuestionHow to convert an xml file to sql table by C# ? Pin
kakaleyte13-Aug-08 21:22
kakaleyte13-Aug-08 21:22 
AnswerRe: How to convert an xml file to sql table by C# ? Pin
That's Aragon14-Aug-08 1:09
That's Aragon14-Aug-08 1:09 
GeneralRe: How to convert an xml file to sql table by C# ? Pin
kakaleyte14-Aug-08 1:22
kakaleyte14-Aug-08 1:22 
GeneralRe: How to convert an xml file to sql table by C# ? Pin
That's Aragon14-Aug-08 1:39
That's Aragon14-Aug-08 1:39 
AnswerRe: How to convert an xml file to sql table by C# ? Pin
kakaleyte14-Aug-08 1:40
kakaleyte14-Aug-08 1:40 
AnswerRe: How to convert an xml file to sql table by C# ? Pin
Cosby26-Aug-08 21:56
Cosby26-Aug-08 21:56 
QuestionHow to edit the single value in xml using xsl Pin
ThangamSundar13-Aug-08 18:31
ThangamSundar13-Aug-08 18:31 
QuestionXSD output (Enforcing XML Closing Tags) Pin
tranzformerz13-Aug-08 12:51
tranzformerz13-Aug-08 12:51 
AnswerRe: XSD output (Enforcing XML Closing Tags) Pin
tranzformerz13-Aug-08 13:44
tranzformerz13-Aug-08 13:44 
QuestionTransform to convert True to true? Pin
Ed K13-Aug-08 8:04
Ed K13-Aug-08 8:04 
QuestionHow to Add new Xml Node Pin
salmonraju13-Aug-08 2:57
salmonraju13-Aug-08 2:57 
AnswerRe: How to Add new Xml Node Pin
PIEBALDconsult13-Aug-08 18:13
mvePIEBALDconsult13-Aug-08 18:13 
QuestionHow to write a XSD for the xml have the node name have Full colon Pin
vicky0000013-Aug-08 1:04
vicky0000013-Aug-08 1:04 

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.