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

  1. #1

    Default Re: Writing HTML Page

    Hi,

    just create an empty ASPX page with no codebehind file. Then place your code
    inside the page (inside <% ... %> of course) and use Response.End to stop
    processing the page any further.

    Best regards,

    Marc Höppner
    NeoGeo

    "Charles Rumbold" <charles.rumbold@dsl.pipex.com> wrote in message
    news:OtOluPGUDHA.3700@tk2msftngp13.phx.gbl...
    > In my app I need to write a complete HTML page. I'm doing it like so
    > in PageLoad method
    >
    > string pageContents = "<HTML> etc etc </HTML>";
    > Response.ClearContent();
    > Response.ClearHeaders();
    > Response.Write( pageContents );
    >
    > This works fine except that I get 2 pages in the output. The first
    > <HTML> tags contain my code, the second pair
    > contain what appears to be the standard ASP code.
    >
    > As I say it works, it just looks odd.
    >
    > Is there a better way to do this?
    >
    > Thanks,
    > Charles
    >
    >
    >

    Marc Hoeppner Guest

  2. Similar Questions and Discussions

    1. Writing HTML data to XML
      I've been playing around with Phil's tutorial (http://www.macromedia.com/devnet/mx/flash/articles/flashpro_asp.html) and am trying to make a...
    2. Repost from DW forum - writing HTML on the fly in VBScript?
      Folks: I am generating an HTML page on the fly, and was wondering if there is any way to simplify the process? I already have the page built,...
    3. Writing variables from flash to a html popupwindow
      I want to write variables from flash tot a html popup window. I have a script which works, but when you're trying it on a slow pc or running it...
    4. Writing a listbox value to an html link concatination
      Ok, I know this sounds weird, but it's really bugging me. I have a few list boxes on my form (basic pick a month, year, state stuff) and you can...
    5. writing HTML directly
      Try the Literal Control or the PlaceHolder server controls. HTH. Mark www.dovetaildatabases.com "Steve" <steve@mintonweb.com> wrote in...
  3. #2

    Default Re: Writing HTML Page

    Marc,

    Many thanks - works a treat!

    Charles

    "Marc Hoeppner" <marchoeppner@hotmail.com> wrote in message
    news:u964jeGUDHA.2180@TK2MSFTNGP10.phx.gbl...
    > Hi,
    >
    > just create an empty ASPX page with no codebehind file. Then place
    your code
    > inside the page (inside <% ... %> of course) and use Response.End to
    stop
    > processing the page any further.
    >
    > Best regards,
    >
    > Marc Höppner
    > NeoGeo
    >

    Charles Rumbold 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