Asp.net Site Problem

webmaster

Guppy
Hi all my site http://www.PurimCenter.com uses bvsoftware

Server Error in '/' Application.

Object reference not set to an instance of an object.

[font=Arial, Helvetica, Geneva, SunSans-Regular, sans-serif]Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:

[NullReferenceException: Object reference not set to an instance of an object.] BVCommerce.DataLayer.DataProvider..ctor() BVCommerce.StoreObjects.Policies..ctor() BVCommerce._default.LoadWelcomeText() BVCommerce._default.Page_Load(Object sender, EventArgs e) System.Web.UI.Control.OnLoad(EventArgs e) +67 System.Web.UI.Control.LoadRecursive() +35 System.Web.UI.Page.ProcessRequestMain() +731[/font]
I double checked the connection string it's correct
the programer created a page http://www.PurimCenter.com/sqltest.aspx
thats test the connection and result = falied
custemer support emaild me that its the software not the host.
Please if any one can help.

Thank You
CJ
 
Without looking through the code there isn't much we can do to help find the problem. A null reference means that the app tried to use an object that was never created. This could be just about anything in the app. Certainly it should not happen and the app should realize that it tried to create an object somewhere and the creation didn't work and handle it accordingly. But the app didn't do that. It tried to create an object and then assumed that it was created and tried to use that object, so this error is raised.
 
coreo i don't have the code.
it's mosprobley gets the connection string from web.config
try's the connection
result.
 
brawney said:
Without looking through the code there isn't much we can do to help find the problem. A null reference means that the app tried to use an object that was never created. This could be just about anything in the app. Certainly it should not happen and the app should realize that it tried to create an object somewhere and the creation didn't work and handle it accordingly. But the app didn't do that. It tried to create an object and then assumed that it was created and tried to use that object, so this error is raised.
Thank You brawney i will contact the programer.

BTW does somone know how to programley change the title of a page or the meta tags?
i have a link http://www.developer.com/net/asp/print.php/2107811
i doesnt seem to work
 
Maybe you have a debug version of the web-site's dll? If yes, then upload it instead of release. It should give a bit more information about what object and where exactly. Otherwise (if you don't have a source code) it is better to contact the creator of this software.

BTW... a bit off-topic, but hmm... Purim Center? Do you mean a Purim - Jewish holiday? :)
 
StPatrick said:
Maybe you have a debug version of the web-site's dll? If yes, then upload it instead of release. It should give a bit more information about what object and where exactly. Otherwise (if you don't have a source code) it is better to contact the creator of this software.

BTW... a bit off-topic, but hmm... Purim Center? Do you mean a Purim - Jewish holiday? :)
Yes Purim Center I mean teh jewish holiday,
I Respect Other Religens and people Diffrent then my culture and backround(just a genrel stament:D )
 
Back
Top