Hi,
I have got a data migration app writting in .Net 3.0 VS2008.
I have deployed in debug mode and copied the PDB file to the server I want to runit.
I get an exception but no line number.
This is how i display the exception
Why is there no line number of the exception???
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;