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

  1. #1

    Default help needed please

    I tested this page
    <%@ Page Language="C#" ContentType="text/html"
    ResponseEncoding="iso-8859-1" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    </head>
    <body>
    <p>This page was created at <b>
    <%= Time %>
    </b> on the computer running ASP.</p>
    </body>
    </html>

    and no asp processing seems to be happeing here is the
    result:

    "This page was created at on the computer running ASP."

    It displays the html , but not the asp

    Does this help?

    Man It sux being a noobie.


    brett Guest

  2. Similar Questions and Discussions

    1. Help with XML needed!!!!
      Hello, I would like to create an extention that will help to manage a glossary. First I need to decide on the structure of the xml document that...
    2. more help needed
      well in the hopes of getting some more help here goes why doesnt this query work i get a 500 internal sevrer error message and no debug info...
    3. help needed reg. sms thru cfm
      could anyone help me out in sending sms thru coldfusion server....as for as i know that can happen only with coldfusion 7 server.kindly clarify if...
    4. Help Needed .....
      If someone can help me out I'll b really greatful. Question: Pls write down the benefits, objectives, technical details, implementation,...
    5. else needed?
      On if statements, I periodically don't want anything to happen if the requisite is not met. In most cases just writing the statement in the format...
  3. #2

    Default Re: help needed please

    Well, Time doesn't mean anything. Try:

    <%=System.DateTime.Now.ToShortTimeString() %>

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows Client
    Windows XP Associate Expert
    --
    More people read the newsgroups than read my email.
    Reply to the newsgroup for a faster response.
    (Control-G using Outlook Express)
    --

    "brett" <anonymous@discussions.microsoft.com> wrote in message
    news:04ed01c3c4b6$940ae5e0$a601280a@phx.gbl...
    > I tested this page
    > <%@ Page Language="C#" ContentType="text/html"
    > ResponseEncoding="iso-8859-1" %>
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    > Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <title>Untitled Document</title>
    > <meta http-equiv="Content-Type" content="text/html;
    > charset=iso-8859-1">
    > </head>
    > <body>
    > <p>This page was created at <b>
    > <%= Time %>
    > </b> on the computer running ASP.</p>
    > </body>
    > </html>
    >
    > and no asp processing seems to be happeing here is the
    > result:
    >
    > "This page was created at on the computer running ASP."
    >
    > It displays the html , but not the asp
    >
    > Does this help?
    >
    > Man It sux being a noobie.
    >
    >

    Chris Jackson 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