Error with hyperlink

  • Thread starter Thread starter ziggs
  • Start date Start date
Z

ziggs

I have an outside vendor that just updated there web access to aspnet
on a Windows 2003 server. Just before the new install, I had a
separate Windows 2000 server with IIS 5 that I used to tap into the
vendors database and then spit out a hyperlink that pointed directly
to their web server asp page.

Unfortunately, I'm getting the error message as seen below. As a side
note, instead of hyperlinking and getting this error, I can right
mouse click, select copy shortcut, paste it and then it will pull up
the vendor's proper web results, but when left mouse clicking the same
link I get the problem.

The error is:

Error occurred
Error: Object reference not set to an instance of an object.

Note: The error has been logged. This error does not mean the system
is unavailable. However, the document you were accessing when the
error occurred may not be available until this error has been
resolved.

Details
Error: Object reference not set to an instance of an object.
Url: /Server1/Html/Web/Doc/Details.aspx
Data: name=264835
Source: Infrastructure
Error in : Void SendIntelligenceInfo(System.String, System.String,
System.String, System.String, System.String, System.String,
System.String)
in : D:\Directory\Server1\Html\Web\Doc\Details.aspx at : line 174
 
This error indicates that some object reference in the code is used before
the object has been created. If you are executing under two different
scenarios under which you get the error in one case and not the other, that
would indicate two separate pathways of execution where one instantiates the
object and the other does not.

If you can look at the application source you should determine which object
is the offender and be sure that all paths of execution create it before it
is used.
 
Back
Top