1

I know that it is a wrong type of question but I have been tired...

I have sent the published files to the customer and now they say they have an error. They printed the error for me. It is something like this:

enter image description here

It is an intranet application and does not have any problem in my local and because of security reason I can not remote to their server.

What is your suggestions...

Any help...

John Saunders
  • 160,644
  • 26
  • 247
  • 397
awe
  • 93
  • 1
  • 8

2 Answers2

0

The exception means some object is null and you try to access one of it's properties or methods. The exception is thrown from ReportSection method from SiteMaster class, you can put your .pdb files beside your dll to get the line number too.

Reza
  • 18,865
  • 13
  • 88
  • 163
  • You mean I should copy that to the server that contains published files? – awe Apr 12 '14 at 11:21
  • Yes, copy them into `BIN` folder on the server , or if you don't have access ask them to copy that – Reza Apr 12 '14 at 11:23
0

If want error line to be printed in your Error stack trace than you have to include .pdb file.

Pdb file generally contains debugging information used by the debugger.

So you have to put .pdb file along with .dll file to get more debugging information.