manishjoisar
Programmer
I have created One DLL
Public Class MyClass
Public Function MyFunction
Try
...
...
Catch Ex As Exception
Throw Ex
End Try
End Function
End Class
Aspx file
Try
Call MyClass.MyFunction
Catch Ex As Exception
TextBox1.Ex.ToString()
End Try
In this case if am getting Line no. Of Throw Ex I want the Exact Line No. With Whole Trace From Start To End
How To Get This
Thanks
Public Class MyClass
Public Function MyFunction
Try
...
...
Catch Ex As Exception
Throw Ex
End Try
End Function
End Class
Aspx file
Try
Call MyClass.MyFunction
Catch Ex As Exception
TextBox1.Ex.ToString()
End Try
In this case if am getting Line no. Of Throw Ex I want the Exact Line No. With Whole Trace From Start To End
How To Get This
Thanks