System.NullReferenceException: 未将对象引用设置到对象的实例

ZSLJLQLILY 2007-03-28 10:36:45
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace vote
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.RadioButtonList RadioButtonList1;
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.Label Label1;
private string voteID="1";
private void Page_Load(object sender, System.EventArgs e)
{
SqlConnection con=DB.creatcon();
con.Open();
SqlCommand cmdItem=new SqlCommand("select voteDetailsID,voteItems from voteDetails where voteID="+this.voteID,con);
SqlDataReader sdr=cmdItem.ExecuteReader();
this.RadioButtonList1.DataSource=sdr;
this.RadioButtonList1.DataValueField="voteItems";
this.RadioButtonList1.DataTextField="voteDetailsID";
this.RadioButtonList1.DataBind();
con.Close();
sdr.Close();
// 在此处放置用户代码以初始化页面
}

#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Button1_Click(object sender, System.EventArgs e)
{
this.Label1.Text=this.RadioButtonList1.SelectedItem.Value.ToString();
}
}

//代码就是这样,怎么一测试就出现:System.NullReferenceException: 未将对象引用设置到对象的实例
错误出现在
行 62: this.Label1.Text=this.RadioButtonList1.SelectedItem.Value.ToString();
希望哪位高手能帮帮我,我的目的是想让选择绑定在RadioButtonList1上的数据显示在Label1上
...全文
262 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
ZSLJLQLILY 2007-03-28
  • 打赏
  • 举报
回复
我想用
RadioButtonList1.SelectedValue的,可是我的RadioButtonList里并没有SelectedValue这个属性啊,我闷了...
smartstar2005 2007-03-28
  • 打赏
  • 举报
回复
RadioButtonList1.SelectedItem.Value 是null
hqpy 2007-03-28
  • 打赏
  • 举报
回复
Value属性一般是隐藏的值,你可能没有邦定,所以是空的
ZSLJLQLILY 2007-03-28
  • 打赏
  • 举报
回复
还是不行呀...
cdsgajxlp 2007-03-28
  • 打赏
  • 举报
回复
this.RadioButtonList1.SelectedItem.Value == null
不能用.ToString();

if (this.RadioButtonList1.SelectedItem.Value!=null)
{
this.Label1.Text=this.RadioButtonList1.SelectedItem.Value.ToString();

}
Snowdust 2007-03-28
  • 打赏
  • 举报
回复
改成这样:
if (this.RadioButtonList1.SelectedItem != null)
{
this.Label1.Text=this.RadioButtonList1.SelectedItem.Value.ToString();
}
因为有可能this.RadioButtonList1没有选中。

110,571

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧