Click to See Complete Forum and Search --> : Mathematical Operators


leeny
02-07-2005, 10:24 PM
hey any1 noes how to put this sign > with _ below on an ASP page? currently im using is >= and the user does not like it, he prefers the above sign. wheneveri tried to cover page on my dreamweaver asp page, it shows this = sign instead. what's wrong? any alternative?

buntine
02-07-2005, 10:49 PM
Do you just want to just print out some characters?

Response.Write(">_")

Regards,
Andrew Buntine.

leeny
02-07-2005, 11:56 PM
huh? no. i nid that mathematic operator right beside my radio button to indicate it's greater than/equals to something else.

Pittimann
02-08-2005, 02:33 AM
Hi!

2 ≥ 1

The '≥' is ≥

Cheers - Pit

buntine
02-08-2005, 02:39 AM
Sorry for misunderstanding you. Is English your first language? If so, its best to use grammer and correct spelling.

Regards.

heavenly_blue
02-08-2005, 01:45 PM
If you're doing some math in the server side code then:

<> Not equal

< Less than

<= Less than or equal to

> Greater than

>= Greater than or equal to

like...


If theVariable <= 3 Then Response.Write "Something."


but if you're trying to display the actual symbol on the page that the user sees the use &ge; (&amp;ge;) and &le; (&amp;le;) for greater or equal to and less than or equal to...

leeny
02-13-2005, 10:13 PM
thanks a million, i've got it! sorry for my grammar and incorrect spelling.