Click here to Skip to main content
15,920,111 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: xml Pin
MidwestLimey1-May-09 3:59
professionalMidwestLimey1-May-09 3:59 
GeneralRe: xml Pin
AndyInUK1-May-09 4:04
AndyInUK1-May-09 4:04 
GeneralRe: xml Pin
MidwestLimey1-May-09 4:40
professionalMidwestLimey1-May-09 4:40 
GeneralRe: xml Pin
AndyInUK1-May-09 4:49
AndyInUK1-May-09 4:49 
AnswerRe: xml Pin
led mike1-May-09 4:36
led mike1-May-09 4:36 
GeneralRe: xml Pin
AndyInUK1-May-09 4:45
AndyInUK1-May-09 4:45 
GeneralRe: xml Pin
MidwestLimey1-May-09 4:49
professionalMidwestLimey1-May-09 4:49 
AnswerXmlTextWriter Pin
David Mujica1-May-09 5:48
David Mujica1-May-09 5:48 
I would take the time to learn about the XmlTextWriter. It made my life so much easier when I had to create an XML file for integration with another system.

Use this to get started ...

Dim writer As New XmlTextWriter(sXMLPath & sXMLName, Nothing)

 'Use automatic indentation for readability.
writer.Formatting = Formatting.Indented

'Write the root element
writer.WriteStartElement("REPORT")
writer.WriteStartElement("FORMULA")
writer.WriteElementString("FORMULA_ID", sField0)
writer.WriteElementString("FORMULA_CODE", sField1)
writer.WriteElementString("VERSION", sField2)
writer.WriteElementString("DESCRIPTION", sField3)
writer.WriteEndElement() ' close formula
writer.WriteEndElement() ' close report


'Write the XML to file and close the writer
writer.Close()

QuestionGridview setting column widths Pin
dptalt1-May-09 3:41
dptalt1-May-09 3:41 
AnswerRe: Gridview setting column widths Pin
MidwestLimey1-May-09 4:58
professionalMidwestLimey1-May-09 4:58 
GeneralRe: Gridview setting column widths Pin
dptalt1-May-09 5:53
dptalt1-May-09 5:53 
Questioni want to save image of chart from page on bottom click? Pin
Piyush Vardhan Singh1-May-09 1:57
Piyush Vardhan Singh1-May-09 1:57 
Questionweb service message queue (can some one please Help me) Pin
Member 46590011-May-09 1:26
Member 46590011-May-09 1:26 
AnswerRe: web service message queue (can some one please Help me) Pin
MidwestLimey1-May-09 4:43
professionalMidwestLimey1-May-09 4:43 
Questioncrash test on my website resolved exception Pin
shabya1-May-09 0:48
shabya1-May-09 0:48 
AnswerRe: crash test on my website resolved exception Pin
Jeff Circeo1-May-09 2:24
Jeff Circeo1-May-09 2:24 
GeneralRe: crash test on my website resolved exception Pin
shabya1-May-09 10:34
shabya1-May-09 10:34 
AnswerRe: crash test on my website resolved exception Pin
Paddy Boyd1-May-09 2:38
Paddy Boyd1-May-09 2:38 
JokeRe: crash test on my website resolved exception Pin
shabya1-May-09 10:33
shabya1-May-09 10:33 
Questioncan enybody help me for import contacts Pin
sasib1-May-09 0:40
sasib1-May-09 0:40 
AnswerRe: can enybody help me for import contacts Pin
saanj1-May-09 1:29
saanj1-May-09 1:29 
GeneralRe: can enybody help me for import contacts Pin
sasib1-May-09 2:31
sasib1-May-09 2:31 
AnswerRe: can enybody help me for import contacts Pin
shexiaohui1-May-09 3:30
shexiaohui1-May-09 3:30 
QuestionFirst and last day of a given week Pin
amit sahu201-May-09 0:21
amit sahu201-May-09 0:21 
AnswerRe: First and last day of a given week Pin
MidwestLimey1-May-09 4:47
professionalMidwestLimey1-May-09 4:47 

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.