Click here to Skip to main content
15,888,461 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP.net Web Forms Pin
nilam247729-Mar-09 22:26
nilam247729-Mar-09 22:26 
AnswerRe: ASP.net Web Forms Pin
Christian Graus29-Mar-09 22:30
protectorChristian Graus29-Mar-09 22:30 
Questiongetting next xml node value Pin
bhattiprolu29-Mar-09 21:48
bhattiprolu29-Mar-09 21:48 
AnswerRe: getting next xml node value Pin
SeMartens29-Mar-09 21:58
SeMartens29-Mar-09 21:58 
GeneralRe: getting next xml node value Pin
bhattiprolu29-Mar-09 23:08
bhattiprolu29-Mar-09 23:08 
GeneralRe: getting next xml node value Pin
SeMartens29-Mar-09 23:39
SeMartens29-Mar-09 23:39 
GeneralRe: getting next xml node value Pin
bhattiprolu30-Mar-09 0:03
bhattiprolu30-Mar-09 0:03 
GeneralRe: getting next xml node value Pin
SeMartens30-Mar-09 1:54
SeMartens30-Mar-09 1:54 
Extend the code as following to get the next node id:

XmlDocument doc = new XmlDocument();
doc.Load("...");

XmlNode oCurNode = doc.SelectSingleNodes("portfolio/portfolios[@id='" + id + "']/src");
iframeprojects.Attributes.Add("src", oCurNode.Attributes["link"].InnerText);

// get next node (this will be a portfolio)
XmlNode oNextNode = oCurNode.NextSibling;
// get the id attribute
string sNextId = oNextNode.Attributes["id"].InnerText;


Then save the sNextId somewhere so that on the next button click you can use it.

Regards
Sebastian

It's not a bug, it's a feature!

Check out my CodeProject article Permission-by-aspect.

Me in Softwareland.

QuestionFrames or Master pages Pin
nilam247729-Mar-09 21:31
nilam247729-Mar-09 21:31 
AnswerRe: Frames or Master pages Pin
N a v a n e e t h29-Mar-09 22:05
N a v a n e e t h29-Mar-09 22:05 
AnswerRe: Frames or Master pages Pin
Christian Graus29-Mar-09 22:22
protectorChristian Graus29-Mar-09 22:22 
QuestionBinding GridView control with datasource Pin
nilam247729-Mar-09 21:27
nilam247729-Mar-09 21:27 
AnswerRe: Binding GridView control with datasource Pin
N a v a n e e t h29-Mar-09 22:13
N a v a n e e t h29-Mar-09 22:13 
QuestionAjax problem? Pin
Karthick_gc29-Mar-09 21:25
Karthick_gc29-Mar-09 21:25 
AnswerRe: Ajax problem? Pin
Christian Graus29-Mar-09 22:21
protectorChristian Graus29-Mar-09 22:21 
QuestionASP.net Web pages refactoring Pin
nilam247729-Mar-09 21:11
nilam247729-Mar-09 21:11 
AnswerRe: ASP.net Web pages refactoring Pin
Christian Graus29-Mar-09 22:33
protectorChristian Graus29-Mar-09 22:33 
QuestionError: DataBinding: 'System.Data.DataRowView' does not contain a property with the name"xyx" Pin
RajpootRohan29-Mar-09 21:09
professionalRajpootRohan29-Mar-09 21:09 
AnswerRe: Error: DataBinding: 'System.Data.DataRowView' does not contain a property with the name"xyx" Pin
N a v a n e e t h29-Mar-09 21:57
N a v a n e e t h29-Mar-09 21:57 
GeneralRe: Error: DataBinding: 'System.Data.DataRowView' does not contain a property with the name"xyx" Pin
RajpootRohan29-Mar-09 22:23
professionalRajpootRohan29-Mar-09 22:23 
QuestionHow to handle the sessions in a website using C#. Pin
pamsbeach29-Mar-09 20:54
pamsbeach29-Mar-09 20:54 
AnswerRe: How to handle the sessions in a website using C#. Pin
Christian Graus29-Mar-09 20:56
protectorChristian Graus29-Mar-09 20:56 
AnswerRe: How to handle the sessions in a website using C#. Pin
N a v a n e e t h29-Mar-09 21:47
N a v a n e e t h29-Mar-09 21:47 
QuestionCrystal report problem in vista Pin
Mogaambo29-Mar-09 20:53
Mogaambo29-Mar-09 20:53 
Questioncan any one tell me how to solve session problem Pin
prasadbuddhika29-Mar-09 20:48
prasadbuddhika29-Mar-09 20:48 

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.