Click here to Skip to main content
15,903,201 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: asp.net application link problem Pin
meetshums9-Jun-08 22:04
meetshums9-Jun-08 22:04 
GeneralRe: asp.net application link problem Pin
sidbaruah9-Jun-08 22:11
sidbaruah9-Jun-08 22:11 
Questionhow to show family tree Pin
girishdonde8-Jun-08 21:08
girishdonde8-Jun-08 21:08 
AnswerRe: how to show family tree Pin
Vasudevan Deepak Kumar8-Jun-08 21:12
Vasudevan Deepak Kumar8-Jun-08 21:12 
QuestionSecurity Error Pin
Laxmikant Lad8-Jun-08 20:40
Laxmikant Lad8-Jun-08 20:40 
QuestionUnAuthorised Exception when invoking WebMethod [modified] Pin
VenkataRamana.Gali8-Jun-08 20:32
VenkataRamana.Gali8-Jun-08 20:32 
Questiongrid in updatepanel? Pin
Member 38798818-Jun-08 20:10
Member 38798818-Jun-08 20:10 
AnswerRe: grid in updatepanel? Pin
eyeseetee8-Jun-08 21:39
eyeseetee8-Jun-08 21:39 
Questioncall a javascript function Pin
ptvce8-Jun-08 19:17
ptvce8-Jun-08 19:17 
AnswerRe: call a javascript function Pin
Vasudevan Deepak Kumar8-Jun-08 19:38
Vasudevan Deepak Kumar8-Jun-08 19:38 
GeneralRe: call a javascript function Pin
ptvce8-Jun-08 19:56
ptvce8-Jun-08 19:56 
GeneralRe: call a javascript function Pin
Vasudevan Deepak Kumar8-Jun-08 20:50
Vasudevan Deepak Kumar8-Jun-08 20:50 
AnswerRe: call a javascript function Pin
Imran Khan Pathan8-Jun-08 19:58
Imran Khan Pathan8-Jun-08 19:58 
GeneralRe: call a javascript function Pin
ptvce8-Jun-08 20:21
ptvce8-Jun-08 20:21 
AnswerRe: call a javascript function Pin
Bhumikabarot8-Jun-08 20:53
Bhumikabarot8-Jun-08 20:53 
AnswerRe: call a javascript function Pin
Muthuvasagan8-Jun-08 22:58
Muthuvasagan8-Jun-08 22:58 
QuestionIn grid rowcommand fire?, Pin
Member 38798818-Jun-08 19:02
Member 38798818-Jun-08 19:02 
AnswerRe: In grid rowcommand fire?, Pin
Vasudevan Deepak Kumar8-Jun-08 19:15
Vasudevan Deepak Kumar8-Jun-08 19:15 
QuestionMoving font from server to client while client is accessing the web page from server. Pin
Pankaj Garg8-Jun-08 18:49
Pankaj Garg8-Jun-08 18:49 
QuestionArabic Text in Code Behind Pin
TheEagle8-Jun-08 16:18
TheEagle8-Jun-08 16:18 
AnswerRe: Arabic Text in Code Behind Pin
Vasudevan Deepak Kumar8-Jun-08 18:50
Vasudevan Deepak Kumar8-Jun-08 18:50 
QuestionStrings and arrays problem Pin
crystal91548-Jun-08 14:46
crystal91548-Jun-08 14:46 
I have an xml file, with "any number of page nodes" each with 3 certain child nodes.
With the XMLDoc, I have read the contents of the pages' 3 child-nodes for purposes of populating a form with their values.

I added a "+" sign at the end of each of the 3 child nodes as I pass them into a string variable so that I can later split them into an array.

I know a "regular" string is passed the repective dimension of the recently split array, i.e.

Dim Page1 as string = split(AllPages(0), "+")
***********************************************************
Whats boggling my mind is the matter of the number of pages in the XML can be any number. I am able to pull the number of pages in that user's XML file via code, but I can not declare

Dim Page(x) as string = split(AllPages(i), "+")

because Page(x) is now an array which is not what it needs to be. It needs to be an ordinary string, but since I do not know how many pages a user has in his XML, I do not know how to dynamically create ordinary string to pass the split array. I know the code has to be:

Page1 = split(AllPages(0), "+")
Page2 = split(AllPages(1), "+")

and so on, but again, I do not know how many pages therefore I cannot declare,

Page1 as string
Page2 as string
etc...
*************************************************************************************

Anyone have a clue on what I should do? C# is fine, but VB is preferred. Thanks !
AnswerRe: Strings and arrays problem Pin
N a v a n e e t h8-Jun-08 16:39
N a v a n e e t h8-Jun-08 16:39 
QuestionHow to select GridView row clicked on custom columns Pin
MaryGeras8-Jun-08 9:29
MaryGeras8-Jun-08 9:29 
AnswerRe: How to select GridView row clicked on custom columns Pin
Vasudevan Deepak Kumar8-Jun-08 19:16
Vasudevan Deepak Kumar8-Jun-08 19:16 

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.