Click here to Skip to main content
15,914,400 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionBinding Gridview with data from String array Pin
SreejithKumar M9-Apr-10 20:06
SreejithKumar M9-Apr-10 20:06 
AnswerRe: Binding Gridview with data from String array Pin
Brij9-Apr-10 20:55
mentorBrij9-Apr-10 20:55 
GeneralRe: Binding Gridview with data from String array Pin
SreejithKumar M9-Apr-10 21:14
SreejithKumar M9-Apr-10 21:14 
GeneralRe: Binding Gridview with data from String array Pin
Brij9-Apr-10 22:41
mentorBrij9-Apr-10 22:41 
GeneralRe: Binding Gridview with data from String array Pin
SreejithKumar M9-Apr-10 23:03
SreejithKumar M9-Apr-10 23:03 
GeneralRe: Binding Gridview with data from String array Pin
Brij9-Apr-10 23:13
mentorBrij9-Apr-10 23:13 
AnswerRe: Binding Gridview with data from String array Pin
Abhijit Jana9-Apr-10 22:23
professionalAbhijit Jana9-Apr-10 22:23 
GeneralRe: Binding Gridview with data from String array Pin
SreejithKumar M9-Apr-10 23:04
SreejithKumar M9-Apr-10 23:04 
QuestionManaging session Pin
krishnaveer9-Apr-10 19:56
krishnaveer9-Apr-10 19:56 
AnswerRe: Managing session Pin
sriharsha_129-Apr-10 20:46
sriharsha_129-Apr-10 20:46 
GeneralRe: Managing session Pin
Not Active10-Apr-10 0:58
mentorNot Active10-Apr-10 0:58 
AnswerRe: Managing session Pin
Brij9-Apr-10 20:51
mentorBrij9-Apr-10 20:51 
QuestionModalPopupExtender not posting second time Pin
vlehotay9-Apr-10 16:30
vlehotay9-Apr-10 16:30 
AnswerRe: ModalPopupExtender not posting second time Pin
vasumagadi20-Jun-11 4:30
vasumagadi20-Jun-11 4:30 
GeneralRe: ModalPopupExtender not posting second time Pin
vlehotay22-Jul-11 7:40
vlehotay22-Jul-11 7:40 
QuestionHow can we create ISAM FILES? Pin
Satish - Developer9-Apr-10 8:28
Satish - Developer9-Apr-10 8:28 
AnswerRe: How can we create ISAM FILES? Pin
Abhijit Jana9-Apr-10 8:57
professionalAbhijit Jana9-Apr-10 8:57 
QuestionCreate Sheduling For Send SMS Pin
lrsalunkhe9-Apr-10 3:48
lrsalunkhe9-Apr-10 3:48 
AnswerRe: Create Sheduling For Send SMS Pin
Abhijit Jana9-Apr-10 3:58
professionalAbhijit Jana9-Apr-10 3:58 
AnswerRe: Create Sheduling For Send SMS Pin
Sandesh M Patil9-Apr-10 4:19
Sandesh M Patil9-Apr-10 4:19 
QuestionXML [modified] Pin
Farraj9-Apr-10 2:52
Farraj9-Apr-10 2:52 
AnswerRe: XML Pin
Brij9-Apr-10 3:15
mentorBrij9-Apr-10 3:15 
AnswerRe: XML Pin
Sandesh M Patil9-Apr-10 3:37
Sandesh M Patil9-Apr-10 3:37 
AnswerRe: XML Pin
Abhijit Jana9-Apr-10 3:54
professionalAbhijit Jana9-Apr-10 3:54 
AnswerRe: XML Pin
Farraj9-Apr-10 4:21
Farraj9-Apr-10 4:21 
i did try something that is working

mlDocument doc = new XmlDocument();
doc.Load("chores2.xml");
XmlElement elmXML = doc.CreateElement("day");
string strNewCat = "<a>" + this.txtBoxAmount.Text + "</a>" +
"<b>" + this.txtBoxPrice.Text +"</b>" +
"<c>" + this.txtBoxAbout.Text + "</c>" +
"<d>" + this.txtBoxSize.Text + "</d>";
elmXML.InnerXml = strNewCat;
doc.DocumentElement.AppendChild(elmXML);
doc.Save(Server.MapPath("chores.xml"));

but it build the xml file not as i need it to be
my question was how can i build it this way
<chores>
<day label="XXX">
<job a="1" b="2" ..="">
<job a="2" b="3".../">

<day label=XXX>
<job a="1" b="2"../>
<job a="2" b=3".../>
</day>

<day label=XXX>
<job a="1" b="2"../>
<job a="2" b=3".../>
</day>

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.