Click here to Skip to main content
15,891,204 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Return DataReader Pin
N a v a n e e t h11-Feb-08 21:26
N a v a n e e t h11-Feb-08 21:26 
QuestionUser Control Post Back On Page Pin
rup_rj11-Feb-08 20:08
rup_rj11-Feb-08 20:08 
GeneralRe: User Control Post Back On Page Pin
Gandalf_TheWhite11-Feb-08 20:25
professionalGandalf_TheWhite11-Feb-08 20:25 
GeneralRe: User Control Post Back On Page Pin
rup_rj11-Feb-08 22:05
rup_rj11-Feb-08 22:05 
GeneralRe: User Control Post Back On Page Pin
N a v a n e e t h11-Feb-08 21:24
N a v a n e e t h11-Feb-08 21:24 
GeneralRe: User Control Post Back On Page Pin
rup_rj11-Feb-08 22:18
rup_rj11-Feb-08 22:18 
GeneralRe: User Control Post Back On Page Pin
Gandalf_TheWhite11-Feb-08 22:47
professionalGandalf_TheWhite11-Feb-08 22:47 
GeneralImages in TreeNode Pin
VanithaVasu11-Feb-08 20:02
VanithaVasu11-Feb-08 20:02 
I want to display the my own .gif images in each of the treenode. Here is my code.
And the image is not displayed in my treeview .

string cmd = "select ISBN,Title,ImagePath from Metadata";
SqlDataAdapter adapter = new SqlDataAdapter(cmd, sqlConn);
DataSet SearchBooks = new DataSet();
adapter.Fill(SearchBooks);
if (SearchBooks.Tables.Count > 0)
{
foreach (DataRow row in SearchBooks.Tables[0].Rows)
{
TreeNode newNode = new TreeNode(row["Title"].ToString() , row["ISBN"].ToString());
newNode.PopulateOnDemand = true;
newNode.ImageUrl= row["ImagePath"].ToString();
newNode.NavigateUrl = row["ImagePath"].ToString();
newNode.SelectAction = TreeNodeSelectAction.Expand;
node.ChildNodes.Add(newNode);
}
}



Where i am wrong. What should i do to view the image in the treenode.
Please somebody guide me.

VanithaVasu

Questionregarding ajax based help messages Pin
SuchiTN11-Feb-08 19:26
SuchiTN11-Feb-08 19:26 
GeneralRe: regarding ajax based help messages Pin
Christian Graus11-Feb-08 20:40
protectorChristian Graus11-Feb-08 20:40 
Questionhow i can encrypt a web.config using command prompt Pin
jagan12311-Feb-08 19:02
jagan12311-Feb-08 19:02 
Questionview state Pin
Member 470807711-Feb-08 19:00
Member 470807711-Feb-08 19:00 
GeneralRe: view state Pin
Christian Graus11-Feb-08 19:02
protectorChristian Graus11-Feb-08 19:02 
GeneralRe: view state Pin
Gandalf_TheWhite11-Feb-08 19:09
professionalGandalf_TheWhite11-Feb-08 19:09 
Questionjavascript Pin
Member 470807711-Feb-08 18:46
Member 470807711-Feb-08 18:46 
GeneralRe: javascript Pin
Christian Graus11-Feb-08 19:01
protectorChristian Graus11-Feb-08 19:01 
Questionget and post Pin
Member 470807711-Feb-08 18:40
Member 470807711-Feb-08 18:40 
GeneralRe: get and post Pin
Christian Graus11-Feb-08 19:03
protectorChristian Graus11-Feb-08 19:03 
QuestionLogin and Login Status Control In Asp.net Pin
ejaz_pk11-Feb-08 18:35
ejaz_pk11-Feb-08 18:35 
GeneralRe: Login and Login Status Control In Asp.net Pin
Not Active12-Feb-08 1:01
mentorNot Active12-Feb-08 1:01 
Questiondataset Pin
Member 470807711-Feb-08 18:33
Member 470807711-Feb-08 18:33 
GeneralRe: dataset Pin
dilipv11-Feb-08 18:58
dilipv11-Feb-08 18:58 
Questionhow to check retype password Pin
Deepthy.P.M11-Feb-08 17:34
Deepthy.P.M11-Feb-08 17:34 
AnswerRe: how to check retype password Pin
Christian Graus11-Feb-08 18:06
protectorChristian Graus11-Feb-08 18:06 
GeneralRe: how to check retype password Pin
Deepthy.P.M11-Feb-08 19:23
Deepthy.P.M11-Feb-08 19:23 

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.