Click here to Skip to main content
16,007,111 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Publish website. No output Pin
minhpc_bk22-Jul-06 21:13
minhpc_bk22-Jul-06 21:13 
GeneralRe: Publish website. No output Pin
Mircea Grelus23-Jul-06 1:15
Mircea Grelus23-Jul-06 1:15 
QuestionDynamic controls Pin
vivsriaus21-Jul-06 13:01
vivsriaus21-Jul-06 13:01 
AnswerRe: Dynamic controls Pin
Grapes-R-Fun21-Jul-06 14:14
Grapes-R-Fun21-Jul-06 14:14 
AnswerRe: Dynamic controls Pin
minhpc_bk21-Jul-06 17:27
minhpc_bk21-Jul-06 17:27 
GeneralRe: Dynamic controls Pin
vivsriaus22-Jul-06 4:42
vivsriaus22-Jul-06 4:42 
QuestionCall static method of user control (ascx) prior to loading it in the Page Pin
Mircea Grelus21-Jul-06 10:27
Mircea Grelus21-Jul-06 10:27 
AnswerRe: Call static method of user control (ascx) prior to loading it in the Page Pin
Frank Kerrigan21-Jul-06 13:09
Frank Kerrigan21-Jul-06 13:09 
GeneralRe: Call static method of user control (ascx) prior to loading it in the Page Pin
Mircea Grelus21-Jul-06 13:12
Mircea Grelus21-Jul-06 13:12 
GeneralRe: Call static method of user control (ascx) prior to loading it in the Page Pin
Frank Kerrigan21-Jul-06 23:11
Frank Kerrigan21-Jul-06 23:11 
AnswerRe: Call static method of user control (ascx) prior to loading it in the Page Pin
minhpc_bk21-Jul-06 18:00
minhpc_bk21-Jul-06 18:00 
AnswerRe: Call static method of user control (ascx) prior to loading it in the Page Pin
Mircea Grelus22-Jul-06 5:51
Mircea Grelus22-Jul-06 5:51 
GeneralRe: Call static method of user control (ascx) prior to loading it in the Page Pin
minhpc_bk22-Jul-06 21:11
minhpc_bk22-Jul-06 21:11 
GeneralRe: Call static method of user control (ascx) prior to loading it in the Page Pin
Mircea Grelus23-Jul-06 1:20
Mircea Grelus23-Jul-06 1:20 
Questiontriggering javascript confirm dialog via a function (not button event) Pin
jszpila21-Jul-06 10:24
jszpila21-Jul-06 10:24 
AnswerRe: triggering javascript confirm dialog via a function (not button event) Pin
Grapes-R-Fun21-Jul-06 14:34
Grapes-R-Fun21-Jul-06 14:34 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
RichardGrimmer23-Jul-06 8:26
RichardGrimmer23-Jul-06 8:26 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
Grapes-R-Fun23-Jul-06 9:26
Grapes-R-Fun23-Jul-06 9:26 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
RichardGrimmer24-Jul-06 5:47
RichardGrimmer24-Jul-06 5:47 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
Grapes-R-Fun24-Jul-06 13:22
Grapes-R-Fun24-Jul-06 13:22 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
RichardGrimmer25-Jul-06 7:16
RichardGrimmer25-Jul-06 7:16 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
Grapes-R-Fun25-Jul-06 8:35
Grapes-R-Fun25-Jul-06 8:35 
QuestionHow to read data from xml file to dataset [modified] Pin
B Desai21-Jul-06 9:56
B Desai21-Jul-06 9:56 
Hello All,
Have some problem, and trying since last two days.
I have a xml file something like this:
I am puting just one node.
- <ROW>
<EVENT_ID>2054767</EVENT_ID>
<EVENT_STATUS>Completed</EVENT_STATUS>
<RESCHD_IND>Y</RESCHD_IND>
<VENUE_CHG_IND>N</VENUE_CHG_IND>
<EVENT_DT>09/23/2004</EVENT_DT>
<EVENT_START_TM>06:30:00 PM</EVENT_START_TM>
<EVENT_END_TM>09:30:00 PM</EVENT_END_TM>
- <CITY>
<CUST_ID>357363</CUST_ID>
<TBGID>1</TBGID>
</CITY>
</ROW>

earlier, I have only data upto <EVENT_END_TM>
and I am able to read it in my dataset easily, using the following code:

System.Xml.XmlNode xNode = somemethod;(this method fetch data from webservice-xml file)
XmlNodeReader xReader = new XmlNodeReader(xNode);
ds.ReadXml(xReader, System.Data.XmlReadMode.Auto);

And I am displaying it directly in datagrid by binding it with dataset.

but now, when I am binding it with datagrid with the same procedure, it only display the column headings, and no data in that.
Can anybody know, how to read this nested node data?
Thank you very much.
Robin

<div class="ForumSig"></div>

-- modified at 16:04 Friday 21st July, 2006
AnswerRe: How to read data from xml file to dataset Pin
Grapes-R-Fun21-Jul-06 15:17
Grapes-R-Fun21-Jul-06 15:17 
GeneralRe: How to read data from xml file to dataset Pin
B Desai22-Jul-06 17:20
B Desai22-Jul-06 17:20 

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.