Posted on: 11/18/2014 6:30:39 AM | Views : 343

Am Getting Duplicate Values...  in  if condition am assigned isNuullOrEmpty
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using System.Configuration;
public partial class Financial_Reports_AccountTreeView : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if(!IsPostBack) { GetTreeviewItems(); } } private void GetTreeviewItems() { Go to the complete details ...