Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Error line number

    Hi Newsgroup,

    A very short question:
    If have a try/catch structure. In the catch part I would like to get the
    line number where the exception has occured? Can I get this information and
    if so how?

    Regards,
    Sune


    Sune Hansen Guest

  2. Similar Questions and Discussions

    1. Return Line Number of text in a textfield?
      Can the line numbers of the text containing a special character be retrieved? e.g. text in a textfield: #line 1 line 2 line 3 #line 4 line...
    2. Inserting Line Number
      I would like to insert line numbers for all the files in a directory. So if a directory contains files like foo.c, foo.c1, foo.c2, foo.c3, foo.c4,...
    3. A (probable) error in perltoot ( perl5/5.8.0/pod/perltoot.pod, line number 756 )
      Dear Perl Programmers, I tried out the code given in :- http://www.perldoc.com/perl5.8.0/pod/perltoot.html#Aggregation The following line :-...
    4. Get number of line with error
      Hi all. I want ask you it exist some way how to get number of line in script producing error. for example: .... .... 100 ...
    5. Error message line number in subs
      I have an interactive perl cgi programlet, which allows some graphics for interactively typed and executed perl programs: ...
  3. #2

    Default Re: Error line number

    As far as I know; after compilation, errors won't show line numbers because,
    they're not in Source Code form. There may be some difference in CLR that I
    don't know.

    Serdar KALAYCI

    "Sune Hansen" <sunedh@hotmail.com> wrote in message
    news:uCh0Fy6PDHA.2256@TK2MSFTNGP11.phx.gbl...
    > Hi Newsgroup,
    >
    > A very short question:
    > If have a try/catch structure. In the catch part I would like to get the
    > line number where the exception has occured? Can I get this information
    and
    > if so how?
    >
    > Regards,
    > Sune
    >
    >

    Serdar Kalaycý Guest

  4. #3

    Default Re: Error line number

    I was affraid that this would be the case.
    However I have found that I can get the line number information from the
    StackTrace like this:

    Catch e As Exception
    Response.Write(e.StackTrace)
    End Try

    /Sune

    "Serdar Kalaycý" <serdarkalayci@unisec.com.tr> wrote in message
    news:OKAd$16PDHA.3880@tk2msftngp13.phx.gbl...
    > As far as I know; after compilation, errors won't show line numbers
    because,
    > they're not in Source Code form. There may be some difference in CLR that
    I
    > don't know.
    >
    > Serdar KALAYCI
    >
    > "Sune Hansen" <sunedh@hotmail.com> wrote in message
    > news:uCh0Fy6PDHA.2256@TK2MSFTNGP11.phx.gbl...
    > > Hi Newsgroup,
    > >
    > > A very short question:
    > > If have a try/catch structure. In the catch part I would like to get the
    > > line number where the exception has occured? Can I get this information
    > and
    > > if so how?
    > >
    > > Regards,
    > > Sune
    > >
    > >
    >
    >

    Sune Hansen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139