gpt4 book ai didi

asp.net - gridview System.NullReferenceException : Object reference not set to an instance of an object.

转载 作者:行者123 更新时间:2023-12-03 08:57:31 25 4
gpt4 key购买 nike

发布我的 Web 应用程序时收到错误消息。当我运行该应用程序时,它工作正常。

我正在使用 vs 2010

这是错误的代码行:

  Dim money As String = footer.Cells(1).Text.Replace("£", String.Empty)

目的是查看gridview的页脚,然后删除£符号,使其不再存在

我将 excel 电子表格中的信息行数据绑定(bind)到 girdview
Protected Sub GridView5_RowDataBound(ByVal sender As Object, ByVal e As  System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView5.RowDataBound
If e.Row.RowType = DataControlRowType.Footer Then
e.Row.Cells(0).Text = "Total"
e.Row.Cells(1).Text = total.ToString("c")
End If


End Sub

谁能帮忙

最佳答案

在此行中:

e.Row.Cells(1).Text = total.ToString("c")
total 在哪里初始化?

如果它没有被初始化,那么当你在这里通过 Cells(1) 访问它时:
Dim money As String = footer.Cells(1).Text.Replace("£", String.Empty)

你会得到 NullReferenceException

关于asp.net - gridview System.NullReferenceException : Object reference not set to an instance of an object.,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19539355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com