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

  1. #1

    Default Page Title

    Does anyone know how change the HTML Page title text without using a
    code-behind page?
    I would like to do this using front side code between <script> tags.

    thanks!


    Matt Tapia Guest

  2. Similar Questions and Discussions

    1. Default Page Title?
      Is there a way to set a default page title for a template in Contribute? In Dreamweaver when you create a page based on a template it retains the...
    2. Disabling Page Title
      Hi all, Is there any way to disable the function for user to enter Page Title/description when they create a new page?
    3. My Title is Application for every page
      hey guys , i have a problem, Evn though i have TITLE tag coded in my page still it shows title as Application for all the pages? Why is it so and...
    4. How Do I Put a Title On A Page With a Photo On It?
      I'm putting together a report with a cover containing a photography on it (4x6) on the upper half of a sheet. What I'm trying to do is put a...
    5. russian in the title of the web page
      Hi, please help! I would like to give my web page a title in russian as the page is in russian text. I can type in russian on the page but if i try...
  3. #2

    Default Re: Page Title

    Why don't you just change it in the html title tag?

    <title>title</title>

    or

    dim bob = "new title"

    <title><%bob%></title>

    bill

    "Matt Tapia" <mtapia@inbizservices.com> wrote in message
    news:Otbu8MBQDHA.1748@TK2MSFTNGP11.phx.gbl...
    > Does anyone know how change the HTML Page title text without using a
    > code-behind page?
    > I would like to do this using front side code between <script> tags.
    >
    > thanks!
    >
    >

    William F. Robertson, Jr. Guest

  4. #3

    Default Re: Page Title

    Add the runat =server to the title tag and make it an html generic control.
    Then do something like
    PageTitle.InnerText = ds.Tables(0).Rows(0).Item("ArticleTitle")

    "Matt Tapia" <mtapia@inbizservices.com> wrote in message
    news:Otbu8MBQDHA.1748@TK2MSFTNGP11.phx.gbl...
    > Does anyone know how change the HTML Page title text without using a
    > code-behind page?
    > I would like to do this using front side code between <script> tags.
    >
    > thanks!
    >
    >

    Showjumper 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