From what page was the message posted to the log?
When writing to a log within ASP.NET, it is very useful to output to the log not just a message such as error test, but where it is being reported.
This tip was submitted to the VS.NET Info Center by member Clive Chinery. Please let other users know how useful it is by rating it below. Do you have a tip or code of your own you'd like to share? Submit it here.



Download: The Developer's Guide to IoT
The IoT world may be exciting, but there are serious technical challenges that need to be addressed, especially by developers. In this handbook, learn how to meet the security, analytics, and testing requirements for IoT applications.
By submitting your personal information, you agree that TechTarget and its partners may contact you regarding relevant content, products and special offers.
You also agree that your personal information may be transferred and processed in the United States, and that you have read and agree to the Terms of Use and the Privacy Policy.
When writing to a log within ASP.NET, it is very useful to output to the log not just a message such as error test, but where it is being reported.
The function GetPage called as
GetPage(Me.Request.FilePath) & ":" & strSql
prepends the name of the form.
Code:
Function GetPage(Byval sPagePath As String) As String 'Purpose: ' Get Page path 'Notes: ' Call as GetPage(Me.Request.FilePath) Dim iFind As Integer iFind = InstrRev(sPagePath,"/",-1, CompareMethod.Text) If iFind > 0 Then Return Mid$(sPagePath, iFind + 1) Else Return sPagePath End If End Function
Start the conversation
0 comments