S
Sacha Korell
Is there a simple way of getting the associated aspx file name from the
code-behind?
I did it this way:
Dim strFileName As String
strFileName = Path.GetFileName(Request.ServerVariables("PATH_TRANSLATED"))
Response.Write(strFileName)
But it seems there should be something like the following Pseudo Code:
me.MyASPXFileName
Thanks,
Sacha
code-behind?
I did it this way:
Dim strFileName As String
strFileName = Path.GetFileName(Request.ServerVariables("PATH_TRANSLATED"))
Response.Write(strFileName)
But it seems there should be something like the following Pseudo Code:
me.MyASPXFileName
Thanks,
Sacha