473,405 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Object Reference Not Set To An Instance of an Object


I have an asp:table inside an itemtemplate of a datalist (dlstForDetails)
the id in three rows of the table is, tblrMembers1, tblrServices1,
tblrBelongs1

Depending on the "go" value of the querystring I want to show or hide any of
these rows.
The code is the following but I get the error

Object Reference not set to an instance of an object

Dim tblrMembers, tblrServices, tblrBelongs As TableRow

tblrMembers = CType(dlstForDetails.FindControl("tblrMembers1"), TableRow)
tblrServices = CType(dlstForDetails.FindControl("tblrServices1"), TableRow)
tblrBelongs = CType(dlstForDetails.FindControl("tblrBelongs1"), TableRow)

Select Case Request.QueryString("go")
Case "YP"
tblrMembers.Visible = False
tblrServices.Visible = False
tblrBelongs.Visible = False
Case "EP"
tblrMembers.Visible = False
Case "AN"
tblrServices.Visible = False
tblrBelongs.Visible = False
Case "KE"
tblrMembers.Visible = False
tblrBelongs.Visible = False
End Select
Nov 19 '05 #1
2 932
there are many possible causes.

the datalist will create a Header even if it does not show it. Check the
ItemType of the item before trying to hide anything as you table wont be in
the header
Nov 19 '05 #2
Yeap you're right thanks a lot!!!

"Josh" <s@a.com> wrote in message
news:Ok**************@TK2MSFTNGP09.phx.gbl...
there are many possible causes.

the datalist will create a Header even if it does not show it. Check the
ItemType of the item before trying to hide anything as you table wont be
in the header

Nov 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

28
by: Daniel | last post by:
Hello =) I have an object which contains a method that should execute every x ms. I can use setInterval inside the object construct like this - self.setInterval('ObjectName.methodName()',...
3
by: Adam | last post by:
We have a web site that uses .vb for the web pages and .cs for a class module. We are getting the error in .NET 2.0 and VS 2005 beta 2. It does work with .NET 1.1. When trying to access a page...
12
by: Andrew Poulos | last post by:
With the following code I can't understand why this.num keeps incrementing each time I create a new instance of Foo. For each instance I'm expecting this.num to alert as 1 but keeps incrementing. ...
6
by: Shailen Sukul | last post by:
Observed a weird behaviour with object references. See code listing below: using System; using System.Collections.Generic; using System.Text; namespace PointerExceptionTest { /*
2
by: Ralph | last post by:
Hi I don't understand why it's not working: function schedule(imTop){ this.tdImagesTop = imTop; } schedule.prototype.selectEl = function() { alert(this.tdImagesTop);
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.