Click here to Skip to main content
16,007,610 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: unique visitor counter Pin
Bradml17-Jan-07 5:10
Bradml17-Jan-07 5:10 
GeneralRe: unique visitor counter Pin
Eric Georgiades17-Jan-07 7:16
Eric Georgiades17-Jan-07 7:16 
GeneralRe: unique visitor counter Pin
Bradml17-Jan-07 15:00
Bradml17-Jan-07 15:00 
GeneralRe: unique visitor counter Pin
Eric Georgiades17-Jan-07 21:24
Eric Georgiades17-Jan-07 21:24 
GeneralRe: unique visitor counter Pin
David Domingues26-Jan-07 6:24
David Domingues26-Jan-07 6:24 
GeneralRe: unique visitor counter Pin
Eric Georgiades26-Jan-07 6:33
Eric Georgiades26-Jan-07 6:33 
GeneralRe: unique visitor counter Pin
David Domingues26-Jan-07 8:54
David Domingues26-Jan-07 8:54 
QuestionJScript ASP Get PC Date Sometimes Fails Pin
Ken4217-Jan-07 2:15
Ken4217-Jan-07 2:15 
We have a function we use to get the user's PC date and time and store it with a record. The reason is that the website is used globally, so our server date and time is not friendly to the user.

The following code does not always work for the same users on the same day. Does anyone know what could cause it to fail so often for the same user? When it does fail, we default to the server date and time instead. I have no errors being generated by it. A factor can be that the Internet connection is not always good.

function Init()
{
var oControlCookie = new Cookie("t", "", 24, "/");
var now = new Date();
oControlCookie.st = escape((now.getMonth()+1) + "/" + now.getDate() + "/" + now.getFullYear() + " " + now.getHours() + ":" + (now.getMinutes()<10?"0":"") + now.getMinutes() + ":" + (now.getSeconds()<10?"0":"") + now.getSeconds());
oControlCookie.Store();
}
AnswerRe: JScript ASP Get PC Date Sometimes Fails Pin
Guffa17-Jan-07 9:37
Guffa17-Jan-07 9:37 
GeneralRe: JScript ASP Get PC Date Sometimes Fails Pin
Ken4218-Jan-07 3:18
Ken4218-Jan-07 3:18 
GeneralRe: JScript ASP Get PC Date Sometimes Fails Pin
Guffa18-Jan-07 7:12
Guffa18-Jan-07 7:12 
GeneralRe: JScript ASP Get PC Date Sometimes Fails Pin
Ken4219-Jan-07 4:00
Ken4219-Jan-07 4:00 
GeneralRe: JScript ASP Get PC Date Sometimes Fails Pin
Guffa19-Jan-07 10:14
Guffa19-Jan-07 10:14 
QuestionReportviewer In Updatepanel Pin
mahi988517-Jan-07 1:57
mahi988517-Jan-07 1:57 
Questionpopup window in javascript Pin
Kanjinghat16-Jan-07 17:16
Kanjinghat16-Jan-07 17:16 
AnswerRe: popup window in javascript Pin
Steve Echols16-Jan-07 17:33
Steve Echols16-Jan-07 17:33 
AnswerRe: popup window in javascript Pin
Kanjinghat16-Jan-07 18:08
Kanjinghat16-Jan-07 18:08 
AnswerRe: popup window in javascript Pin
David Domingues26-Jan-07 6:32
David Domingues26-Jan-07 6:32 
QuestionASP.NET and asynchronous threads Pin
Master Toothless One16-Jan-07 17:08
Master Toothless One16-Jan-07 17:08 
AnswerRe: ASP.NET and asynchronous threads Pin
Richard Andrew x6418-Jan-07 15:13
professionalRichard Andrew x6418-Jan-07 15:13 
QuestionHow to loop through a table before submit? Pin
littlecuttiepie16-Jan-07 13:24
littlecuttiepie16-Jan-07 13:24 
AnswerRe: How to loop through a table before submit? Pin
Christian Graus16-Jan-07 13:43
protectorChristian Graus16-Jan-07 13:43 
AnswerRe: How to loop through a table before submit? Pin
Guffa16-Jan-07 13:46
Guffa16-Jan-07 13:46 
AnswerRe: How to loop through a table before submit? Pin
David Domingues26-Jan-07 6:52
David Domingues26-Jan-07 6:52 
QuestionSuccessful Split and array [modified] Pin
Tyrone_whitey16-Jan-07 6:10
Tyrone_whitey16-Jan-07 6:10 

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.