Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI
I have three labels ,I want to show XML data on Labels.

When I run , Clicked on Button then Only One Label shows data ,other 2 directly disappered from webpage

I applied Breakpoints ,then came to know that there are whitespace


I used Replace command also still facing same issue,

Please help me for this.
protected void Button1_Click(object sender, EventArgs e) 
{ XmlReader xmlRdr = XmlReader.Create(@"C:\Form Data.xml");
 while (xmlRdr.Read())
 { if (xmlRdr.Name =="CompanyName") 
{
 Label1.Text = xmlRdr.ReadString();
 } 
if (xmlRdr.Name == "AccountNumber") 
{
 Label2.Text = xmlRdr.ReadString();
 }
 if (xmlRdr.Name == "Address1") 
{
 Label3.Text = xmlRdr.ReadString();
 } } } }
Posted
Updated 27-Feb-13 7:44am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900