Click here to Skip to main content
15,867,870 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Good day

I have created a ASP.net website. I use a datalist to bind the data. I want to disable or make the rest of the items in the datalist not visible after clicking on any item in a datalist.

How can I do that?

Here is my code:

if (IsPostBack)
      {
          clsDBCalls objDBcalls = new clsDBCalls();

          DataTable dtfullDesc = new DataTable();
          DataTable dtMessages = new DataTable();
          int iDTListID = e.Item.ItemIndex;

          LinkButton strlblSystem = e.Item.FindControl("lnkSystem") as LinkButton;

          string strValue = strlblSystem.Text;

              dtfullDesc = objDBcalls.dtSystemDescription(strValue);
              DataList dtSystemdescription = e.Item.FindControl("dtSystemDescription") as DataList;


              Session["SystemName"] = strValue;
              dtSystemdescription.DataSource = dtfullDesc;
              dtSystemdescription.DataBind();

      }
  }


Thanks
Posted
Comments
I.explore.code 28-Aug-12 7:45am    
Are u trying to do this so the user can only select one item at a time?
Naga KOTA 29-Aug-12 2:57am    
ARE YOU TRYING TO DISABLE THE ITEMS LIST IN DATA TABLE WHICH USER SELECT?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900