Ask a Question related to ASP.NET General, Design and Development.
-
Demetri #1
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
-
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... -
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... -
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... -
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... -
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... -
S. Justin Gengo #2
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



Reply With Quote

