Click here to Skip to main content
16,014,705 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Display HTML page in a table Pin
Nnamdi Onyeyiri22-Jul-02 10:00
Nnamdi Onyeyiri22-Jul-02 10:00 
General"ASP.NET Step by Step" code examples Pin
Rickard Andersson2018-Jul-02 2:25
Rickard Andersson2018-Jul-02 2:25 
GeneralWestCiv HTML and CSS Course, free Pin
Paul Watson17-Jul-02 23:04
sitebuilderPaul Watson17-Jul-02 23:04 
GeneralRe: WestCiv HTML and CSS Course, free Pin
Michael Martin24-Jul-02 3:38
professionalMichael Martin24-Jul-02 3:38 
GeneralRe: WestCiv HTML and CSS Course, free Pin
Paul Watson24-Jul-02 3:54
sitebuilderPaul Watson24-Jul-02 3:54 
GeneralCheap Web Hosting Pin
ngocdung1010@hcmc.netnam.vn17-Jul-02 21:18
sussngocdung1010@hcmc.netnam.vn17-Jul-02 21:18 
GeneralRounding numbers using Javascript Pin
Mastamind17-Jul-02 5:59
Mastamind17-Jul-02 5:59 
GeneralRe: Rounding numbers using Javascript Pin
Jeremy Falcon17-Jul-02 8:11
professionalJeremy Falcon17-Jul-02 8:11 
You'll have to use some trickery to get two decimal places deep. And, leave the value as a string only converting when needed; otherwise, a trailing zero could be dropped.

// result
x = 726.9
// we want two decimal places so add ten tens in decimal (hundred)
x = Math.round(x * 100);
// manually insert the decimal place into the integer
x = String(x);
x = x.substring(0, x.length-2) + "." + x.substr(x.length-2, 2);


Jeremy Falcon
Imputek

<nobr>"..." - Paul Watson  07-17
GeneralBinary by ASP Pin
17-Jul-02 2:57
suss17-Jul-02 2:57 
GeneralRe: Binary by ASP Pin
Chris Maunder17-Jul-02 20:16
cofounderChris Maunder17-Jul-02 20:16 
GeneralPush data continuously from server to client Pin
Nityananda16-Jul-02 6:29
Nityananda16-Jul-02 6:29 
GeneralASP Hit Counter Pin
Chris J. LaQuerre15-Jul-02 14:08
Chris J. LaQuerre15-Jul-02 14:08 
GeneralRe: ASP Hit Counter Pin
Christopher Lord15-Jul-02 21:12
Christopher Lord15-Jul-02 21:12 
QuestionHow Do I Avoid Refresh Pin
Pradhip15-Jul-02 11:26
Pradhip15-Jul-02 11:26 
AnswerRe: How Do I Avoid Refresh Pin
Jeremy Falcon16-Jul-02 9:51
professionalJeremy Falcon16-Jul-02 9:51 
GeneralSend my own POST Pin
alex.barylski15-Jul-02 11:24
alex.barylski15-Jul-02 11:24 
GeneralRe: Send my own POST Pin
Jeremy Falcon16-Jul-02 10:03
professionalJeremy Falcon16-Jul-02 10:03 
GeneralRe: Send my own POST Pin
alex.barylski16-Jul-02 11:23
alex.barylski16-Jul-02 11:23 
GeneralRe: Send my own POST Pin
Jeremy Falcon17-Jul-02 3:43
professionalJeremy Falcon17-Jul-02 3:43 
GeneralRe: Send my own POST Pin
alex.barylski17-Jul-02 22:06
alex.barylski17-Jul-02 22:06 
GeneralRe: Send my own POST Pin
Jeremy Falcon18-Jul-02 4:04
professionalJeremy Falcon18-Jul-02 4:04 
GeneralRe: Send my own POST Pin
alex.barylski18-Jul-02 12:00
alex.barylski18-Jul-02 12:00 
GeneralRe: Send my own POST (edit) Pin
Jeremy Falcon19-Jul-02 4:33
professionalJeremy Falcon19-Jul-02 4:33 
GeneralRe: Send my own POST (edit) Pin
alex.barylski19-Jul-02 10:50
alex.barylski19-Jul-02 10:50 
GeneralRe: Send my own POST (edit) Pin
Jeremy Falcon19-Jul-02 11:05
professionalJeremy Falcon19-Jul-02 11:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.