473,407 Members | 2,676 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,407 software developers and data experts.

Object reference not set to an instance of an object??

Hi Group,

I wonder if any smart people out there can help me ...

I keep gettng Object reference not set to an instance of an object whenever
I run my aspx page.

I cannot understand why I keep getting this as a while ago this page worked
fine with as far as I can tell no modifications. I have underlined the line
where it throws the exception. I am using DreamweaverMX's Datasets if that
makes any difference :)

I have included the code down to the error line if that helps...

Thanks

<!-- #include file="nocache.asp" -->
<!-- #include file="BasketTotal.aspx" -->
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1"
debug="true" %>
<%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
Assembly="DreamweaverCtrls,version=1.0.0.0,publicK eyToken=836f606ede05d46a,culture=neutral"
%>
<MM:DataSet
id="dbMenu"
runat="Server"
IsStoredProcedure="false"
ConnectionString='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_STRING_CMC")
%>'
DatabaseType='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_DATABASETYPE_CMC")
%>'
CommandText='<%# "SELECT
categoryID,CatLink,subcategoryid=0,name=categoryna me FROM category union
all select categoryid,CatLink,subcategoryid,name=subcategoryn ame from
subcategory ORDER BY categoryid,subcategoryid" %>'
Debug="true"
</MM:DataSet> <MM:DataSet
id="QryBasketItems"
runat="Server"
IsStoredProcedure="false"
ConnectionString='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_STRING_CMC")
%>'
DatabaseType='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_DATABASETYPE_CMC")
%>'
CommandText='<%# "SELECT COUNT(DISTINCT(sku)) AS TOTALSKUS FROM
dbo.basket_detail INNER JOIN dbo.Basket ON dbo.Basket.Basket_id =
dbo.Basket_detail.Basket_id WHERE dbo.Basket.Shopper_ID =shopper_id" %>'
Debug="true"<Parameters>

<Parameter Name="@shopper_id" Value='<%# IIf((Not
Request.Cookies("shopGuid")("Guid") Is Nothing), Request.Cookies(IIf((Not
Request.Cookies("shopGuid")("Guid") Is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Nothing), "ShopGUID", 0)).Value, "") %>' Type="VarChar" />
------------------------------------------------------------------------
</Parameters>
</MM:DataSet>
Nov 18 '05 #1
2 1907
Quickly looking at it, my guess is that Request.Cookies("shopGuid") doesn't
exist, so when you try to access the "Guid" value of something that doesn't
exist, it's crashing.

You should check to make sure Request.Cookies("shopGuid") isn't nothing
before tryin to do anything to it..

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Reapes" <no*************@hotmail.com> wrote in message
news:XF*********************@fe2.news.blueyonder.c o.uk...
Hi Group,

I wonder if any smart people out there can help me ...

I keep gettng Object reference not set to an instance of an object whenever I run my aspx page.

I cannot understand why I keep getting this as a while ago this page worked fine with as far as I can tell no modifications. I have underlined the line where it throws the exception. I am using DreamweaverMX's Datasets if that
makes any difference :)

I have included the code down to the error line if that helps...

Thanks

<!-- #include file="nocache.asp" -->
<!-- #include file="BasketTotal.aspx" -->
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" debug="true" %>
<%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
Assembly="DreamweaverCtrls,version=1.0.0.0,publicK eyToken=836f606ede05d46a,c
ulture=neutral" %>
<MM:DataSet
id="dbMenu"
runat="Server"
IsStoredProcedure="false"
ConnectionString='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_STRING
_CMC") %>'
DatabaseType='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_DATABA
SETYPE_CMC") %>'
CommandText='<%# "SELECT
categoryID,CatLink,subcategoryid=0,name=categoryna me FROM category union
all select categoryid,CatLink,subcategoryid,name=subcategoryn ame from
subcategory ORDER BY categoryid,subcategoryid" %>'
Debug="true"
</MM:DataSet> <MM:DataSet
id="QryBasketItems"
runat="Server"
IsStoredProcedure="false"
ConnectionString='<%#

System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_STRING
_CMC") %>'
DatabaseType='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_DATABA
SETYPE_CMC") %>'
CommandText='<%# "SELECT COUNT(DISTINCT(sku)) AS TOTALSKUS FROM
dbo.basket_detail INNER JOIN dbo.Basket ON dbo.Basket.Basket_id =
dbo.Basket_detail.Basket_id WHERE dbo.Basket.Shopper_ID =shopper_id" %>'
Debug="true"
<Parameters> <Parameter Name="@shopper_id" Value='<%# IIf((Not
Request.Cookies("shopGuid")("Guid") Is Nothing), Request.Cookies(IIf((Not
Request.Cookies("shopGuid")("Guid") Is
--------------------------------------------------------------------------

----------------------------------------------------------------------------
------------------------------ Nothing), "ShopGUID", 0)).Value, "") %>' Type="VarChar" />
------------------------------------------------------------------------
</Parameters>
</MM:DataSet>

Nov 18 '05 #2
Ok Found it !

removed the hash from the line : <%# to <% and it works fine again. Why DWMX
puts this in I don't know..

Thanks

"Reapes" <no*************@hotmail.com> wrote in message
news:XF*********************@fe2.news.blueyonder.c o.uk...
Hi Group,

I wonder if any smart people out there can help me ...

I keep gettng Object reference not set to an instance of an object
whenever I run my aspx page.

I cannot understand why I keep getting this as a while ago this page
worked fine with as far as I can tell no modifications. I have underlined
the line where it throws the exception. I am using DreamweaverMX's
Datasets if that makes any difference :)

I have included the code down to the error line if that helps...

Thanks

<!-- #include file="nocache.asp" -->
<!-- #include file="BasketTotal.aspx" -->
<%@ Page Language="VB" ContentType="text/html"
ResponseEncoding="iso-8859-1" debug="true" %>
<%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
Assembly="DreamweaverCtrls,version=1.0.0.0,publicK eyToken=836f606ede05d46a,culture=neutral"
%>
<MM:DataSet
id="dbMenu"
runat="Server"
IsStoredProcedure="false"
ConnectionString='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_STRING_CMC")
%>'
DatabaseType='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_DATABASETYPE_CMC")
%>'
CommandText='<%# "SELECT
categoryID,CatLink,subcategoryid=0,name=categoryna me FROM category union
all select categoryid,CatLink,subcategoryid,name=subcategoryn ame from
subcategory ORDER BY categoryid,subcategoryid" %>'
Debug="true"
</MM:DataSet>

<MM:DataSet
id="QryBasketItems"
runat="Server"
IsStoredProcedure="false"
ConnectionString='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_STRING_CMC")
%>'
DatabaseType='<%#
System.Configuration.ConfigurationSettings.AppSett ings("MM_CONNECTION_DATABASETYPE_CMC")
%>'
CommandText='<%# "SELECT COUNT(DISTINCT(sku)) AS TOTALSKUS FROM
dbo.basket_detail INNER JOIN dbo.Basket ON dbo.Basket.Basket_id =
dbo.Basket_detail.Basket_id WHERE dbo.Basket.Shopper_ID =shopper_id" %>'
Debug="true"
<Parameters>

<Parameter Name="@shopper_id" Value='<%# IIf((Not
Request.Cookies("shopGuid")("Guid") Is Nothing), Request.Cookies(IIf((Not
Request.Cookies("shopGuid")("Guid") Is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Nothing), "ShopGUID", 0)).Value, "") %>' Type="VarChar" />
------------------------------------------------------------------------
</Parameters>
</MM:DataSet>

Nov 18 '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()',...
6
by: Martin | last post by:
I'd like to be able to get the name of an object instance from within a call to a method of that same object. Is this at all possible? The example below works by passing in the name of the object...
15
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use...
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...
4
by: Luke Matuszewski | last post by:
Here are some questions that i am interested about and wanted to here an explanation/discussion: 1. (general) Is the objectness in JavaScript was supported from the very first version of it (in...
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 { /*
14
by: Philipp Reif | last post by:
Hi all, I've got a little hole in my head concerning references. Here's what I'm trying to do: I'm calling a function, passing the reference of a business object for editing. The function clones...
3
by: User1014 | last post by:
A global variable is really just a property of the "Global Object", so what does that make a function defined in the global context? A method of the Global Object? ...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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,...

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.