Get the name of the current page

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Get the name of the current page

    How do I get the name of the current .aspx page using vb.net in asp.net?

    TIA,

    Steve Wofford
    [url]www.IntraRELY.com[/url]


    IntraRELY Guest

  2. Similar Questions and Discussions

    1. Current Page Number
      Hi, I'm a newbie at any kind of Acrobat development, but can't seem to find a way to get the current page number on the client side of a pdf...
    2. Refresh current page?
      I have a page that when I hit refresh on my browswer always takes back to the default.cfm.. Is there anyway to check what the current page is and...
    3. complete URL of current page?
      How can I get the complete URL of the current page? The best I have been able to come up with is: $selfURL = 'http://'.$_SERVER.$_SERVER; But...
    4. Tab Page containing current control
      I pass a control to a subroutine for some validation. Depending on what the subroutine finds, I want to modify the tab page on which the control...
    5. redirect to another page based on text in the URL of the current page
      Hi JPElectron, You were looking good until you got to the code. You're trying to use client-side code for your redirects, when you should be...
  3. #2

    Default Re: Get the name of the current page

    From the top of my head:

    System.IO.Path.GetFileName(System.Web.HttpContext. Current.Request.Url.Absolu
    tePath)

    But maybe there is a shorter way ?

    Hope it helps...


    "IntraRELY" <IntraRELY@yahoo.com> wrote in message
    news:eptmI4uVDHA.2040@TK2MSFTNGP11.phx.gbl...
    > How do I get the name of the current .aspx page using vb.net in asp.net?
    >
    > TIA,
    >
    > Steve Wofford
    > [url]www.IntraRELY.com[/url]
    >
    >

    niceguy Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139