ASP. DropDownList Findbyvalue Object reference not set to an instance of an object workaround

Source: Internet
Author: User

1, Careless put the field name in DataValueField wrong.

2. Write DataBind () behind Findbyvalue (), the following code is in the correct order:

1Bll. Student Bllstu =NewBLL.
Student (); 2 //set up a data source
3Studdl.datasource =bllstu.getstudentlist ();4 //Set display data field name
5Studdl.datatextfield ="Stuname";
6 //Set Value field name
7Studdl.datavaluefield ="Stuid";
8 //binding
9 Studdl.databind ();Ten //Set the selected value
 OneStuDDL.Items.FindByValue (Stuid). Selected =true;

3. The data source did not find the value. That should add a non-null judgment, the code is as follows:

1Bll. Student Bllstu =NewBLL.
Student (); 2  //set up a data source
3Studdl.datasource =bllstu.getstudentlist ();4  //Set display data field name
5Studdl.datatextfield ="Stuname";
6  //Set Value field name
7Studdl.datavaluefield ="Stuid";
8  //binding
9 Studdl.databind ();Ten  //Getchecked Values
 One  ObjectFindvalue=StuDDL.Items.FindByValue (stuid); A  if(findvalue!=NULL)
 -  {
 -findvalue.selected =true;
 the  }

ASP. DropDownList Findbyvalue Object reference not set to an instance of an object workaround

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.