Click here to Skip to main content
15,913,934 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionsocket & events Pin
nissar27-Oct-06 21:23
nissar27-Oct-06 21:23 
QuestionHow to manage Image and Text Pin
logicon27-Oct-06 20:18
logicon27-Oct-06 20:18 
QuestionDelete Control Pin
MHASSANF27-Oct-06 20:18
MHASSANF27-Oct-06 20:18 
AnswerRe: Delete Control Pin
_AK_31-Oct-06 18:38
_AK_31-Oct-06 18:38 
Questiondatagrid with checkboxes in C#.net(asp.net) Pin
vijay258327-Oct-06 18:04
vijay258327-Oct-06 18:04 
JokeRe: datagrid with checkboxes in C#.net(asp.net) Pin
Jerry Hammond28-Oct-06 16:27
Jerry Hammond28-Oct-06 16:27 
QuestionHow to fetch data from database in Tree view Pin
dj.rock27-Oct-06 17:49
dj.rock27-Oct-06 17:49 
AnswerRe: How to fetch data from database in Tree view Pin
Abhishek Joshi27-Oct-06 22:32
Abhishek Joshi27-Oct-06 22:32 
Include Microsoft.Web.UI.WebControls.dll in your project.
For runtime addition of nodes for TreeView control do following steps
//On aspx page register TreeView as
<%@ Page language="c#" Codebehind="TreeControl.aspx.cs" AutoEventWireup="false" Inherits="UserControlApplication.TreeControl" %>
//Treeview Control
<tc:treeview class="link" id="tree1" runat="server" indent="15">

//Add the root node for User Control Tree1 in .cs file
TreeNode tNode = new TreeNode();
tNode.Text="Root";
tree1.Nodes.Add(tNode);

//Add Child Node to root node tNode
TreeNode tChileNode1 = new TreeNode();
tChileNode1.Text = str;//This string is the information retrieved form database
tNode.Nodes.Add(tChileNode1);

Big Grin | :-D

#Abhi#

GeneralRe: How to fetch data from database in Tree view Pin
dj.rock29-Oct-06 17:02
dj.rock29-Oct-06 17:02 
Questionfile upload asp control Pin
dhatchu27-Oct-06 15:43
dhatchu27-Oct-06 15:43 
Questionuploading excel file to web server Pin
nivasinfotech27-Oct-06 12:03
nivasinfotech27-Oct-06 12:03 
AnswerRe: uploading excel file to web server Pin
Tad McClellan27-Oct-06 16:33
professionalTad McClellan27-Oct-06 16:33 
AnswerRe: uploading excel file to web server Pin
Jerry Hammond27-Oct-06 17:38
Jerry Hammond27-Oct-06 17:38 
QuestionUse 2 different databases Pin
shapper27-Oct-06 8:07
shapper27-Oct-06 8:07 
AnswerRe: Use 2 different databases Pin
indianet27-Oct-06 13:04
indianet27-Oct-06 13:04 
AnswerRe: Use 2 different databases Pin
Jerry Hammond27-Oct-06 18:01
Jerry Hammond27-Oct-06 18:01 
Questionhey guys!!!!!!!! Pin
dhami_naresh27-Oct-06 7:22
dhami_naresh27-Oct-06 7:22 
AnswerRe: hey guys!!!!!!!! Pin
ednrgc27-Oct-06 7:27
ednrgc27-Oct-06 7:27 
QuestionCenter buttons, textboxes, and images Pin
kani9827-Oct-06 6:12
kani9827-Oct-06 6:12 
AnswerRe: Center buttons, textboxes, and images Pin
ednrgc27-Oct-06 7:31
ednrgc27-Oct-06 7:31 
AnswerRe: Center buttons, textboxes, and images Pin
indianet27-Oct-06 13:06
indianet27-Oct-06 13:06 
QuestionSetting asp.net Version number using installer projects Pin
Nick The Newbie27-Oct-06 5:58
Nick The Newbie27-Oct-06 5:58 
QuestionRe: Setting asp.net Version number using installer projects Pin
Nick The Newbie30-Oct-06 3:16
Nick The Newbie30-Oct-06 3:16 
QuestionImage Preview Pin
SiouxL27-Oct-06 5:58
SiouxL27-Oct-06 5:58 
QuestionXML, Runtime and Web.Config problem. How to solve this? Pin
shapper27-Oct-06 5:31
shapper27-Oct-06 5:31 

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.