Click here to Skip to main content
15,924,829 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Chage the lowercase into uppercase Pin
Guffa17-Apr-06 22:08
Guffa17-Apr-06 22:08 
GeneralRe: Chage the lowercase into uppercase Pin
nesaraja17-Apr-06 22:32
nesaraja17-Apr-06 22:32 
GeneralRe: Chage the lowercase into uppercase Pin
J4amieC17-Apr-06 23:01
J4amieC17-Apr-06 23:01 
QuestionUsing LightWeigt postback of asp.net2.0 for refreshing page Pin
sandeep kumar pundhir17-Apr-06 19:24
sandeep kumar pundhir17-Apr-06 19:24 
Questiontraversing through a treeview web control Pin
Kapil Thakur17-Apr-06 19:15
Kapil Thakur17-Apr-06 19:15 
AnswerRe: traversing through a treeview web control Pin
minhpc_bk17-Apr-06 20:05
minhpc_bk17-Apr-06 20:05 
AnswerRe: traversing through a treeview web control Pin
Kapil Thakur17-Apr-06 20:53
Kapil Thakur17-Apr-06 20:53 
GeneralRe: traversing through a treeview web control Pin
minhpc_bk17-Apr-06 23:27
minhpc_bk17-Apr-06 23:27 
You might want to debug your application and try to step through your sample code line by line. Also, i'm curious that why you don't just use the TreeNode instance from the Nodes collection instead of using the GetNodeFromIndex method. Anyway, below is a quick example for this:
private ArrayList GetContacts()
	ArrayList Contacts = new ArrayList();
	           
	foreach(TreeNode node in TV_MasterContactList.Nodes)
	{
		GetSelectedContactID(node, Contacts);
	}
              
	return  Contacts;			
}
        
private void GetSelectedContactID(TreeNode node, ArrayList Contacts)
{
	if(node.Checked)
		Contacts.Add(node.ID);
	           
	foreach(TreeNode child in node.Nodes)
	{
		GetSelectedContactID(child, Contacts);	
	}
} 

QuestionAccess a BoundField's HeaderText through Script Pin
RX Maverick17-Apr-06 18:08
RX Maverick17-Apr-06 18:08 
AnswerRe: Access a BoundField's HeaderText through Script Pin
minhpc_bk17-Apr-06 19:21
minhpc_bk17-Apr-06 19:21 
Questionasp:CheckBox two-way binding problem Pin
FlorianS17-Apr-06 17:27
FlorianS17-Apr-06 17:27 
AnswerRe: asp:CheckBox two-way binding problem Pin
minhpc_bk17-Apr-06 19:29
minhpc_bk17-Apr-06 19:29 
QuestionPrinting and formatting using datagrid--Urgent help needed Pin
DiptyMay17-Apr-06 13:10
DiptyMay17-Apr-06 13:10 
AnswerRe: Printing and formatting using datagrid--Urgent help needed Pin
goyal manish18-Apr-06 4:39
goyal manish18-Apr-06 4:39 
QuestionHow do create an Admin page that has the same functionality as "Security" tab in 'ASP.NET configuration tool'? Pin
Slow Learner17-Apr-06 10:24
Slow Learner17-Apr-06 10:24 
AnswerRe: How do create an Admin page that has the same functionality as "Security" tab in 'ASP.NET configuration tool'? Pin
Mike Ellison17-Apr-06 14:01
Mike Ellison17-Apr-06 14:01 
QuestionASP.NET Application Deployment Pin
pgoutia17-Apr-06 6:24
pgoutia17-Apr-06 6:24 
AnswerRe: ASP.NET Application Deployment Pin
Jon Sagara17-Apr-06 6:27
Jon Sagara17-Apr-06 6:27 
GeneralRe: ASP.NET Application Deployment Pin
pgoutia17-Apr-06 6:35
pgoutia17-Apr-06 6:35 
GeneralRe: ASP.NET Application Deployment Pin
Braulio Dez17-Apr-06 7:22
Braulio Dez17-Apr-06 7:22 
Questionlearning Crystal Report Pin
ptvce17-Apr-06 5:51
ptvce17-Apr-06 5:51 
AnswerRe: learning Crystal Report Pin
Mike Ellison17-Apr-06 6:22
Mike Ellison17-Apr-06 6:22 
Questionvs2005 page events for c# Pin
the pink jedi17-Apr-06 5:43
the pink jedi17-Apr-06 5:43 
AnswerRe: vs2005 page events for c# Pin
ToddHileHoffer17-Apr-06 5:57
ToddHileHoffer17-Apr-06 5:57 
AnswerRe: vs2005 page events for c# Pin
minhpc_bk17-Apr-06 16:39
minhpc_bk17-Apr-06 16:39 

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.