Click here to Skip to main content
15,891,567 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to show report header in a crystal report Pin
sgsiva6-Jan-10 16:21
sgsiva6-Jan-10 16:21 
QuestionHow i can display the multiple records of reserved vehicle in a single row of table or gridview control Pin
Rameez Raja2-Aug-08 17:17
Rameez Raja2-Aug-08 17:17 
AnswerRe: How i can display the multiple records of reserved vehicle in a single row of table or gridview control Pin
Paul Conrad2-Aug-08 19:04
professionalPaul Conrad2-Aug-08 19:04 
Questionexport in word Pin
meghamaharshi2-Aug-08 2:41
meghamaharshi2-Aug-08 2:41 
AnswerRe: export in word Pin
Christian Graus2-Aug-08 12:38
protectorChristian Graus2-Aug-08 12:38 
Questionexporting reports to excel using export property of crystal reports viewer Pin
hyperalergelo2-Aug-08 1:51
hyperalergelo2-Aug-08 1:51 
AnswerRe: exporting reports to excel using export property of crystal reports viewer Pin
hyperalergelo5-Aug-08 1:13
hyperalergelo5-Aug-08 1:13 
Questionmaster page and content form Pin
vijaylumar2-Aug-08 1:26
vijaylumar2-Aug-08 1:26 
i have a master page
and i added a new page and i select this master page for it

now i written a java script in the content page
which returns date and display in hiddenfield
for that i written like this


Function RetTime()
{
var a_p = "";
var d = new Date();
var curr_hour = d.getHours();
if (curr_hour < 12)
{
a_p = "AM";
}
else
{
a_p = "PM";
}
if (curr_hour == 0)
{
curr_hour = 12;
}
if (curr_hour > 12)
{
curr_hour = curr_hour - 12;
}

var curr_min = d.getMinutes();

curr_min = curr_min + "";

if (curr_min.length == 1)
{
curr_min = "0" + curr_min;
}

document.write(curr_hour + " : " + curr_min + " " + a_p);
}





but it is not working
plz help me
how can i run this function and display in hiddenfiled
or store the date in a variable of content page


i want to store todays date in database

plz help me

thanks in advance
vijay kumar
AnswerRe: master page and content form Pin
Guffa2-Aug-08 2:35
Guffa2-Aug-08 2:35 
GeneralRe: master page and content form Pin
vijaylumar2-Aug-08 3:01
vijaylumar2-Aug-08 3:01 
GeneralRe: master page and content form Pin
Guffa2-Aug-08 3:24
Guffa2-Aug-08 3:24 
QuestionDayofweek Pin
trilokharry2-Aug-08 1:19
trilokharry2-Aug-08 1:19 
AnswerRe: Dayofweek Pin
Blue_Boy2-Aug-08 1:56
Blue_Boy2-Aug-08 1:56 
AnswerRe: Dayofweek Pin
Christian Graus2-Aug-08 12:39
protectorChristian Graus2-Aug-08 12:39 
QuestionRemote Modification Pin
il_manti2-Aug-08 0:39
il_manti2-Aug-08 0:39 
AnswerRe: Remote Modification Pin
_AK_2-Aug-08 0:44
_AK_2-Aug-08 0:44 
GeneralRe: Remote Modification Pin
il_manti2-Aug-08 1:00
il_manti2-Aug-08 1:00 
GeneralRe: Remote Modification Pin
_AK_2-Aug-08 1:03
_AK_2-Aug-08 1:03 
GeneralRe: Remote Modification Pin
il_manti2-Aug-08 1:05
il_manti2-Aug-08 1:05 
GeneralRe: Remote Modification Pin
_AK_2-Aug-08 1:11
_AK_2-Aug-08 1:11 
Questionis it possible to resize the image at the time of uploading Pin
nileshsaraf2-Aug-08 0:23
nileshsaraf2-Aug-08 0:23 
AnswerRe: is it possible to resize the image at the time of uploading Pin
_AK_2-Aug-08 0:32
_AK_2-Aug-08 0:32 
Questionproblem with browsers Pin
vijaylumar2-Aug-08 0:12
vijaylumar2-Aug-08 0:12 
AnswerRe: problem with browsers Pin
Brij2-Aug-08 0:31
mentorBrij2-Aug-08 0:31 
GeneralRe: problem with browsers Pin
vijaylumar2-Aug-08 1:20
vijaylumar2-Aug-08 1:20 

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.