original article: http://aspnetresources.com/... This one is the lesser evil. Aaron Boodman suggested a really neat solution: <a href="http://google.com/" onclick="window.open(this.h... 'popupwindow', 'width=400,height=300,scrol... return false;">Link text goes here</a> The advantages of these links are many: You can simply follow them. You can choose to open them in a new window by right-clicking. You can bookmark them ......
Save TreeView Nodes Expansion/Collapse & Checkboxes State In Session Original article: http://blog.binaryocean.com... I added Checkboxes State save/restore into the class: Imports Microsoft.VisualBasic Imports System.Collections.Generic Public Class TreeViewState Private RestoreTreeViewIndex As Integer Public Sub SaveTreeView(ByVal treeView As TreeView, ByVal key As String) Dim listExpanded As New List(Of Nullable(Of Boolean)) Dim listChecked ......
Treeview Postback as per http://msdn2.microsoft.com/... TreeView.TreeNodeCheckChanged occurs when some other control does the postback, but "changing a check box does not cause a post back" Brian Goldfarb's Blog: http://blogs.msdn.com/bgold... google search "asp.net 2.0 treeview postback" interesting result: http://steveorr.net/article... ......