Click here to Skip to main content
15,904,024 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionClick event in Textbox? Pin
Karthick_gc16-Feb-09 0:35
Karthick_gc16-Feb-09 0:35 
AnswerRe: Click event in Textbox? Pin
Calin Tatar16-Feb-09 0:53
Calin Tatar16-Feb-09 0:53 
AnswerRe: Click event in Textbox? Pin
Gaurav K Singh16-Feb-09 0:54
Gaurav K Singh16-Feb-09 0:54 
Questionhow to implement ReOrderList without binding datasource control Pin
ashok@techxygen16-Feb-09 0:22
ashok@techxygen16-Feb-09 0:22 
QuestionHow to add node one to another tree view on click of bottom? Pin
Piyush Vardhan Singh16-Feb-09 0:18
Piyush Vardhan Singh16-Feb-09 0:18 
AnswerRe: How to add node one to another tree view on click of bottom? Pin
Gaurav K Singh16-Feb-09 1:04
Gaurav K Singh16-Feb-09 1:04 
GeneralRe: How to add node one to another tree view on click of bottom? Pin
Piyush Vardhan Singh16-Feb-09 1:10
Piyush Vardhan Singh16-Feb-09 1:10 
GeneralRe: How to add node one to another tree view on click of bottom? Pin
Gaurav K Singh16-Feb-09 1:45
Gaurav K Singh16-Feb-09 1:45 
USE This:
In html:



<asp:treeview id="TreeView1" runat="server" xmlns:asp="#unknown">
<nodes>
<asp:treenode showcheckbox="True" text="Node1" value="Node1">
<asp:treenode showcheckbox="True" text="Node2" value="sub Node">
<asp:treenode showcheckbox="True" text="Node3" value="Node3">




<asp:treeview id="TreeView2" runat="server" xmlns:asp="#unknown">





<asp:button id="SubmitButton" runat="server" text="Submit" xmlns:asp="#unknown">



In code behind:

For Each node As TreeNode In TreeView1.CheckedNodes
Dim treenode As New TreeNode()
treenode.Text = node.Text
Me.TreeView2.Nodes.Add(treenode)
Next

The miracle is this--the more we share, the more we have.

QuestionHow no to direct to a page aftr logging out ? Pin
Subin Alex15-Feb-09 23:47
Subin Alex15-Feb-09 23:47 
AnswerRe: How no to direct to a page aftr logging out ? Pin
rakeshs31215-Feb-09 23:50
rakeshs31215-Feb-09 23:50 
GeneralRe: How no to direct to a page aftr logging out ? Pin
Karthick_gc16-Feb-09 0:36
Karthick_gc16-Feb-09 0:36 
GeneralRe: How no to direct to a page aftr logging out ? Pin
rakeshs31216-Feb-09 1:18
rakeshs31216-Feb-09 1:18 
GeneralRe: How no to direct to a page aftr logging out ? Pin
Karthick_gc16-Feb-09 1:23
Karthick_gc16-Feb-09 1:23 
GeneralRe: How no to direct to a page aftr logging out ? Pin
rakeshs31216-Feb-09 1:35
rakeshs31216-Feb-09 1:35 
GeneralRe: How no to direct to a page aftr logging out ? Pin
Karthick_gc16-Feb-09 1:41
Karthick_gc16-Feb-09 1:41 
QuestionFrame? Pin
Karthick_gc15-Feb-09 23:28
Karthick_gc15-Feb-09 23:28 
AnswerRe: Frame? Pin
Gaurav K Singh16-Feb-09 0:48
Gaurav K Singh16-Feb-09 0:48 
QuestionXML navigation Pin
Member 398136615-Feb-09 23:15
Member 398136615-Feb-09 23:15 
AnswerRe: XML navigation Pin
SeMartens16-Feb-09 2:42
SeMartens16-Feb-09 2:42 
Questionscroll posititon for div but different problem (timer is there) Pin
rahul_miche15-Feb-09 23:01
rahul_miche15-Feb-09 23:01 
AnswerRe: scroll posititon for div but different problem (timer is there) Pin
Gaurav K Singh16-Feb-09 3:28
Gaurav K Singh16-Feb-09 3:28 
GeneralRe: scroll posititon for div but different problem (timer is there) Pin
rahul_miche16-Feb-09 23:18
rahul_miche16-Feb-09 23:18 
GeneralRe: scroll posititon for div but different problem (timer is there) Pin
Gaurav K Singh16-Feb-09 23:23
Gaurav K Singh16-Feb-09 23:23 
GeneralRe: scroll posititon for div but different problem (timer is there) Pin
rahul_miche16-Feb-09 23:42
rahul_miche16-Feb-09 23:42 
GeneralRe: scroll posititon for div but different problem (timer is there) Pin
rahul_miche17-Feb-09 0:10
rahul_miche17-Feb-09 0:10 

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.