Click here to Skip to main content
15,902,636 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: PLz help me it is urgent Pin
_AK_7-Aug-06 21:01
_AK_7-Aug-06 21:01 
AnswerRe: PLz help me it is urgent Pin
albCode7-Aug-06 21:26
albCode7-Aug-06 21:26 
AnswerRe: PLz help me it is urgent Pin
PlayByTheRules8-Aug-06 1:42
PlayByTheRules8-Aug-06 1:42 
QuestionInvalid_Viewstate_Client_Disconnected Pin
Praveen_S7-Aug-06 20:52
Praveen_S7-Aug-06 20:52 
AnswerRe: Invalid_Viewstate_Client_Disconnected Pin
_AK_7-Aug-06 20:56
_AK_7-Aug-06 20:56 
GeneralRe: Invalid_Viewstate_Client_Disconnected Pin
Bimal Kothari2-Oct-08 3:56
Bimal Kothari2-Oct-08 3:56 
QuestionRead XML Pin
Vipin Venugopal7-Aug-06 20:35
Vipin Venugopal7-Aug-06 20:35 
AnswerRe: Read XML [modified] Pin
coolestCoder7-Aug-06 22:15
coolestCoder7-Aug-06 22:15 
Hi Vipin,
You can use a For each statement to read all the nodes in an XmlDocument. the XmlDocument will contain the xml data from a file, i guess. You can do something like this-

XmlDocument xmlDoc = new XmlDocument();
int i=0;
string[] arrString = new string[20];
XmlNode tempNode, xn;

xmlDoc.Load("c:\sample.xml");
xn = doc.DocumentElement;
ForEach(tempNode In xn.ChildNodes)
arrString[i] = tempNode.InnerText;
i++;
Next
doc.Save("c:\sample.xml");

Hope this helps. The code i wrote is not compiled. tell me if gives some error, i will correct it.







"A good programmer is someone who looks both ways before crossing a one-way street." -- Doug Linder

Anant Y. Kulkarni

Questionrefresh opner window Pin
mbbisht7-Aug-06 20:25
mbbisht7-Aug-06 20:25 
AnswerRe: refresh opner window Pin
Guffa7-Aug-06 20:41
Guffa7-Aug-06 20:41 
AnswerRe: refresh opner window [modified] Pin
Guffa8-Aug-06 8:09
Guffa8-Aug-06 8:09 
Questionphoto album prob (array to datalist , repeater)in image Pin
Pravin H7-Aug-06 19:31
Pravin H7-Aug-06 19:31 
QuestionshowModalDialog fires Page_Load only on first click Pin
Tarakeshwar Reddy7-Aug-06 19:15
professionalTarakeshwar Reddy7-Aug-06 19:15 
Questionlocal resources Pin
NasimKaziS7-Aug-06 19:06
NasimKaziS7-Aug-06 19:06 
Questionhandling keyboard event of data grid on client side Pin
24891287-Aug-06 18:43
24891287-Aug-06 18:43 
AnswerRe: handling keyboard event of data grid on client side Pin
Muhammad Chitrali7-Aug-06 22:46
Muhammad Chitrali7-Aug-06 22:46 
GeneralRe: handling keyboard event of data grid on client side Pin
24891288-Aug-06 1:32
24891288-Aug-06 1:32 
Questionhow to link menus with javascript in asp.net Pin
Ramu.e7-Aug-06 18:12
Ramu.e7-Aug-06 18:12 
QuestionECHO Pin
Tiger4567-Aug-06 17:48
Tiger4567-Aug-06 17:48 
QuestionHow to call/execute window application from web application ? Pin
lethanhtri7-Aug-06 17:20
lethanhtri7-Aug-06 17:20 
AnswerRe: How to call/execute window application from web application ? Pin
ravikiranreddydharmannagari7-Aug-06 18:46
ravikiranreddydharmannagari7-Aug-06 18:46 
GeneralRe: How to call/execute window application from web application ? Pin
Muhammad Chitrali7-Aug-06 22:51
Muhammad Chitrali7-Aug-06 22:51 
QuestionAdding Items To Cart Pin
kjosh7-Aug-06 15:50
kjosh7-Aug-06 15:50 
AnswerRe: Adding Items To Cart Pin
Not Active7-Aug-06 16:37
mentorNot Active7-Aug-06 16:37 
AnswerRe: Adding Items To Cart Pin
Tim Kohler7-Aug-06 16:40
Tim Kohler7-Aug-06 16:40 

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.