I have a data transfer application that fits into .Net 3.0 VS2008.
I deployed in debug mode and copied the PDB file to the server that I want to run.
I get an exception, but not a line number.
This is how I show the exception
Why is there no exception line number ???
Malcolm
string msg = string.Format("{0} {1} {2}",ex.Message,ex.StackTrace.ToString(),ex.Source.ToString());
if(ex.InnerException != null)
msg += string.Format(" {0}", ex.InnerException.ToString());
return msg;
source
share