DataTable的写法
DetailsList组件中有几个Label.每个Label的值要从DataList组件的LinkButton的CommandArgument中得到。在代码中写一个Dat...
DetailsList组件中有几个Label.
每个Label的值要从DataList组件的LinkButton的CommandArgument中得到。
在代码中写一个DataTable就可以把数据从这边写到那边,本人初学者,希望哪位稍懂的可以帮我写一下。应该就几句。
这是LinkButton的CommandArgument属性
CommandArgument='<%# Eval("ID")+"|"+Eval("name")+"|"+Eval("sex")+"|"+Eval("bh")%> '
这是后台代码的一部分,点击linkButton的事件
protected void LinkButton_ChaKan_Click(object sender, EventArgs e)
{
DetailsView1.Visible = true;
LinkButton itemButton =(LinkButton)sender;
itemButton.Attributes.Add("onmouseover","showDiv22(this);");
string arguments = itemButton.CommandArgument;
char[] pars = { '|'};
string[] addArgu = arguments.Split(pars);
Label divstudent_bh;
divstudent_bh = (Label)DetailsView1.FindControl("divstudent_bh");
divstudent_bh.Text = addArgu[3];
运行到最后一句都提示“未将对象引用设置到对象的实例。”
该怎么写呢?本人愚笨,又是初学,不要见笑。
确实是divstudent_bh ==null;
但是有id为divstudent_bh的控件啊 展开
每个Label的值要从DataList组件的LinkButton的CommandArgument中得到。
在代码中写一个DataTable就可以把数据从这边写到那边,本人初学者,希望哪位稍懂的可以帮我写一下。应该就几句。
这是LinkButton的CommandArgument属性
CommandArgument='<%# Eval("ID")+"|"+Eval("name")+"|"+Eval("sex")+"|"+Eval("bh")%> '
这是后台代码的一部分,点击linkButton的事件
protected void LinkButton_ChaKan_Click(object sender, EventArgs e)
{
DetailsView1.Visible = true;
LinkButton itemButton =(LinkButton)sender;
itemButton.Attributes.Add("onmouseover","showDiv22(this);");
string arguments = itemButton.CommandArgument;
char[] pars = { '|'};
string[] addArgu = arguments.Split(pars);
Label divstudent_bh;
divstudent_bh = (Label)DetailsView1.FindControl("divstudent_bh");
divstudent_bh.Text = addArgu[3];
运行到最后一句都提示“未将对象引用设置到对象的实例。”
该怎么写呢?本人愚笨,又是初学,不要见笑。
确实是divstudent_bh ==null;
但是有id为divstudent_bh的控件啊 展开
3个回答
展开全部
divstudent_bh.Text = addArgu[3];
这句设置个断点,看看是否divstudent_bh是否为null。
divstudent_bh = (Label)DetailsView1.FindControl("divstudent_bh");
====================================
Return Value
The specified control, or a null reference (Nothing in Visual Basic) if the specified control does not exist.
================================================
如果没有ID为divstudent_bh的label控件,FindControl返回的是null
这句设置个断点,看看是否divstudent_bh是否为null。
divstudent_bh = (Label)DetailsView1.FindControl("divstudent_bh");
====================================
Return Value
The specified control, or a null reference (Nothing in Visual Basic) if the specified control does not exist.
================================================
如果没有ID为divstudent_bh的label控件,FindControl返回的是null
亚果会
2024-04-11 广告
2024-04-11 广告
Goma Greens是一家专注于提供高品质有机蔬果的企业。我们致力于为消费者带来新鲜、健康、无污染的食材,以满足现代人对健康生活的追求。我们的产品均来自精心挑选的有机农场,通过严格的品质控制,确保每一份食材都达到最高标准。此外,我们还提供...
点击进入详情页
本回答由亚果会提供
展开全部
是不是divstudent_bh ==null,
看看divstudent_bh = (Label)DetailsView1.FindControl("divstudent_bh");
找到控件了吗,估计是没有找到
看看divstudent_bh = (Label)DetailsView1.FindControl("divstudent_bh");
找到控件了吗,估计是没有找到
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
做个标记
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询