Advertisement
uniblab

Untitled

Oct 24th, 2019
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. public string CurrentPagePath {
  2.     get {
  3.         string result = "";
  4.         try {
  5.             result = Request.RawUrl;
  6.         } catch ( Exception ex ) {
  7.             result = "";
  8.         }
  9.         return result;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement