writing HTML directly

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

  1. #1

    Default Re: writing HTML directly

    Try the Literal Control or the PlaceHolder server controls. HTH.

    Mark
    [url]www.dovetaildatabases.com[/url]

    "Steve" <steve@mintonweb.com> wrote in message
    news:099601c34560$5617c080$a001280a@phx.gbl...
    > What is the best method if I want to write HTML directly
    > for part of my page? I couldn't find a server control
    > where the HTML stream could be specified directly by
    > code. Is it still OK to use <% %> directives as one
    > would in ASP? The ASP.NET documentation doesn't mention
    > that as a possibility, therefore I was worried it is
    > depracated somehow.

    Mark 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 HTML with PHP, executing external scripts
      I currently have a layout that is part written in SHTML - in other words, it gets processed by the web server to execute any calls for PHP or Perl...
    4. 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...
    5. 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...
  3. #2

    Default Re: writing HTML directly

    Hello Steve

    Yes...you can use the <% %> in asp net.

    You can also use Response.Write, or you can create a HTML div tag, set its
    Runat property to Server and then modify its InnerHTML property just to
    name a couple of possibilities


    Ibrahim Malluf




    "Steve" <steve@mintonweb.com> wrote in message
    news:099601c34560$5617c080$a001280a@phx.gbl...
    > What is the best method if I want to write HTML directly
    > for part of my page? I couldn't find a server control
    > where the HTML stream could be specified directly by
    > code. Is it still OK to use <% %> directives as one
    > would in ASP? The ASP.NET documentation doesn't mention
    > that as a possibility, therefore I was worried it is
    > depracated somehow.

    IbrahimMalluf Guest

  4. #3

    Default Re: writing HTML directly

    You can still use the <% %> method as well. I occasionally use this method
    to write out the contents of JavaScript variables that I need dynamically
    generated...


    "Steve" <steve@mintonweb.com> wrote in message
    news:099601c34560$5617c080$a001280a@phx.gbl...
    > What is the best method if I want to write HTML directly
    > for part of my page? I couldn't find a server control
    > where the HTML stream could be specified directly by
    > code. Is it still OK to use <% %> directives as one
    > would in ASP? The ASP.NET documentation doesn't mention
    > that as a possibility, therefore I was worried it is
    > depracated somehow.

    Kenn Ghannon 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