Click here to Skip to main content
15,895,667 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem with the '£' symbol when exporting to Excel Pin
Am Ritha26-Sep-06 19:41
Am Ritha26-Sep-06 19:41 
AnswerRe: Problem with the '£' symbol when exporting to Excel Pin
minhpc_bk26-Sep-06 20:52
minhpc_bk26-Sep-06 20:52 
GeneralRe: Problem with the '£' symbol when exporting to Excel Pin
Am Ritha26-Sep-06 21:06
Am Ritha26-Sep-06 21:06 
QuestionHTML Text property problem for Custom Button Control Pin
Sandip Kansara26-Sep-06 19:15
Sandip Kansara26-Sep-06 19:15 
AnswerRe: HTML Text property problem for Custom Button Control Pin
minhpc_bk26-Sep-06 19:41
minhpc_bk26-Sep-06 19:41 
QuestionClient System Time Pin
kirthikirthi26-Sep-06 19:14
kirthikirthi26-Sep-06 19:14 
AnswerRe: Client System Time Pin
minhpc_bk26-Sep-06 19:46
minhpc_bk26-Sep-06 19:46 
AnswerRe: Client System Time Pin
Exelioindia26-Sep-06 20:06
Exelioindia26-Sep-06 20:06 
Hi,

By using the Javascript we can able to do this. Just check the below code help's you.





<title>Untitled Document



function clock()
{
var date = new Date()
var hour = date.getHours()
var minute = date.getMinutes()
var second = date.getSeconds()
if (hour > 12) {
hour = hour - 12
}
if (minute < 10) {
minute = "0" + minute
}

if (second < 10) {
second = "0" + second
}

document.f.txt.value = hour + ":" + minute + ":" + second

setTimeout("clock()", 1000)

}










If you want more just visit the link:

http://www.codegrounds.com/articles/2/1/Client-Side-system-time-using-Javascript[^]



Know is Drop, Unknown is Ocean

QuestionAsp:Label control Pin
nannapanenikamalnath26-Sep-06 19:04
nannapanenikamalnath26-Sep-06 19:04 
Questionwhat is the reason of this .net runtime exception ? Pin
King Shez26-Sep-06 18:56
King Shez26-Sep-06 18:56 
QuestionExcel and Asp.net Pin
kavithapuranik26-Sep-06 18:55
kavithapuranik26-Sep-06 18:55 
AnswerRe: Excel and Asp.net Pin
minhpc_bk26-Sep-06 19:57
minhpc_bk26-Sep-06 19:57 
GeneralRe: Excel and Asp.net Pin
kavithapuranik26-Sep-06 20:03
kavithapuranik26-Sep-06 20:03 
GeneralRe: Excel and Asp.net Pin
minhpc_bk26-Sep-06 20:16
minhpc_bk26-Sep-06 20:16 
Questionmodule Pin
amaneet26-Sep-06 18:41
amaneet26-Sep-06 18:41 
AnswerRe: module Pin
minhpc_bk26-Sep-06 19:59
minhpc_bk26-Sep-06 19:59 
QuestionWhat is the memory limitation of ASP.Net worker process ? Pin
King Shez26-Sep-06 18:15
King Shez26-Sep-06 18:15 
AnswerRe: What is the memory limitation of ASP.Net worker process ? Pin
minhpc_bk26-Sep-06 19:52
minhpc_bk26-Sep-06 19:52 
QuestionHelp for Nested grid Pin
Kokila.B26-Sep-06 17:50
Kokila.B26-Sep-06 17:50 
AnswerRe: Help for Nested grid Pin
Jay_se26-Sep-06 19:38
Jay_se26-Sep-06 19:38 
QuestionCookies - Problem setting them Pin
dgonzale26-Sep-06 16:32
dgonzale26-Sep-06 16:32 
QuestionImport/Upload directory (URGENT!!!) Pin
Yong Yau26-Sep-06 16:32
Yong Yau26-Sep-06 16:32 
AnswerRe: Import/Upload directory (URGENT!!!) Pin
dgonzale26-Sep-06 16:46
dgonzale26-Sep-06 16:46 
GeneralRe: Import/Upload directory (URGENT!!!) Pin
Yong Yau26-Sep-06 18:02
Yong Yau26-Sep-06 18:02 
AnswerRe: Import/Upload directory (URGENT!!!) Pin
dgonzale27-Sep-06 3:07
dgonzale27-Sep-06 3:07 

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.