Forum Moderators: open
Other then this posted problem I recieve a linkpoint file is not properly installed or not present on the server, but that problem is only temporary too.
Server Error in '/' Application.
--------------------------------------------------------------------------------
550 unknown user <mysnippedurl.com>
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.OverflowException: 550 unknown user <myurlagain.com>
Source Error:
The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
<%@ Page Language="C#" Debug="true" %>
or:
2) Add the following section to the configuration file of your application:
<configuration>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>
Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
Stack Trace:
[OverflowException: 550 unknown user <myurlagain.com>
]
Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack) +899
ASP.receipt2_aspx.SendCustomerEmail() +12409
ASP.receipt2_aspx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) +94
System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +27
System.Web.UI.Control.Render(HtmlTextWriter writer) +7
System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +243
System.Web.UI.Page.ProcessRequestMain() +1926
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300
The shopping cart brand is "salescart" asp.net version
The cart company blames the hosting company, the hosting company is very patient with me, but thinks the code is just written badly.
The cart however has made a lot of money for me. I am afraid to change carts for a whole lot of reasons. I only know basic html so my knowedge is very limited to the problem. Webmasterworld is the only place I have to go.
and thank you for the replies too :)
If you had the source then you'd see additional files with the same name as your aspx file. As an example if you were running pages written in c# then you'd have
mypage.aspx
mypage.aspx.cs <-- the source code would be in this hugger right here
I'd ask the software developers to be specific as to why they believe it's the hosts fault and why they can't just catch the System.OverflowException?
try
{
//do some stuff
}
catch(System.Exception se)
{
// got an error better do something
}
catch(System.OverflowException soe)
{
// uh oh, got an error better do something so my customers don't freak out when they see this error
}
finally
{
// final cleanup...
}