D
DaMan
I have a ASP.NET page with a TRY / CATCH in it
essentially the code reads
TRY
do code
CATCH ex as EXCEPTION
label1.TEXT = ex.MESSAGE
myresult = ex.HRESULT <<< error!
END TRY
I need to find the exact error number stored in EXCEPTION.HRESULT, however
it is not an available field in ex.XXXX
ex.HRESULTS says it is protected but ex.MESSAGE is OK, how do I get the
HRESULT.
Thanks...
essentially the code reads
TRY
do code
CATCH ex as EXCEPTION
label1.TEXT = ex.MESSAGE
myresult = ex.HRESULT <<< error!
END TRY
I need to find the exact error number stored in EXCEPTION.HRESULT, however
it is not an available field in ex.XXXX
ex.HRESULTS says it is protected but ex.MESSAGE is OK, how do I get the
HRESULT.
Thanks...