Conditional HTML Building

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

  1. #1

    Default Conditional HTML Building

    Lets say I want the page to build a certain way based on a
    querystring value and I need to do it within the HTML
    (aspx not cs file).

    In classic asp using vb I could do something like:

    <%if request.querystring("msg") = "hello"%>
    <div>Hello world</div>
    <%else%>
    <div>No message</div>
    <%end if%>

    What would be the equivalent (translate it) of that in C#?
    Demetri Guest

  2. Similar Questions and Discussions

    1. Conditional INSERT
      I have a pair of tables. The first one contains information about courses and 2 of its columns are `id` (the id of the course) and `places` (the...
    2. building HTML pages from CFM pages
      Does CF have a function that could be used to build static pages from dynamic pages? I realize I could just save the HTML that it outputs as an...
    3. Conditional formating
      Hi, I'm working with a datagrid whithout any problem. But now I like to use some condinional formating to one of the columns. If the value in...
    4. Building a control to container users html
      I want to be able to create a control that will wrap any html placed inside the control tag with some predefine html. For example is the...
    5. Conditional sum?
      FMP6, MacOSX.2 I've created a calc field using the aggregate Sum(score) to give me a "total points scored" for all related records in a...
  3. #2

    Default Re: Conditional HTML Building

    Demetri,

    Look up the "Literal" control.

    I think it may help you with this type of thing.

    Sincerely,

    --
    S. Justin Gengo, MCP
    Web Developer

    Free code library at:
    [url]www.aboutfortunate.com[/url]

    "Out of chaos comes order."
    Nietzche


    "Demetri" <Reject@spam.com> wrote in message
    news:0ab801c35ce4$4498cf70$a501280a@phx.gbl...
    > Lets say I want the page to build a certain way based on a
    > querystring value and I need to do it within the HTML
    > (aspx not cs file).
    >
    > In classic asp using vb I could do something like:
    >
    > <%if request.querystring("msg") = "hello"%>
    > <div>Hello world</div>
    > <%else%>
    > <div>No message</div>
    > <%end if%>
    >
    > What would be the equivalent (translate it) of that in C#?

    S. Justin Gengo 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