Click here to Skip to main content
15,909,897 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionAjaxToolkit with gridview Pin
papy-boom23-Dec-08 14:29
papy-boom23-Dec-08 14:29 
AnswerRe: AjaxToolkit with gridview Pin
PunkIsNotDead15-Jul-09 8:04
PunkIsNotDead15-Jul-09 8:04 
QuestionProblem with FormView and Update query Pin
David Mujica23-Dec-08 10:51
David Mujica23-Dec-08 10:51 
GeneralPage Refresh Question Pin
Tom Delany23-Dec-08 6:46
Tom Delany23-Dec-08 6:46 
GeneralRe: Page Refresh Question Pin
Tom Delany23-Dec-08 7:18
Tom Delany23-Dec-08 7:18 
GeneralRe: Page Refresh Question Pin
ToddHileHoffer23-Dec-08 7:25
ToddHileHoffer23-Dec-08 7:25 
GeneralRe: Page Refresh Question Pin
Tom Delany23-Dec-08 7:35
Tom Delany23-Dec-08 7:35 
GeneralRe: Page Refresh Question Pin
ToddHileHoffer23-Dec-08 8:05
ToddHileHoffer23-Dec-08 8:05 
Here is the javascript if you want to go that route.

// CREDITS:
// Automatic Page Refresher by Peter Gehrig and Urs Dudli
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com & http://www.designerwiz.com
// info@24fun.com
// 8/30/2001

// IMPORTANT:
// If you add this script to a script-library or script-archive
// you have to add a link to http://www.24fun.com on the webpage
// where this script will be running.

////////////////////////////////////////////////////////////////////////////
// CONFIGURATION STARTS HERE

// Configure refresh interval (in seconds)
var refreshinterval=60

// Shall the coundown be displayed inside your status bar? Say "yes" or "no" below:
var displaycountdown="yes"

// CONFIGURATION ENDS HERE
////////////////////////////////////////////////////////////////////////////

// Do not edit the code below
var starttime
var nowtime
var reloadseconds=0
var secondssinceloaded=0

function starttime() {
starttime=new Date()
starttime=starttime.getTime()
countdown()
}

function countdown() {
nowtime= new Date()
nowtime=nowtime.getTime()
secondssinceloaded=(nowtime-starttime)/1000
reloadseconds=Math.round(refreshinterval-secondssinceloaded)
if (refreshinterval>=secondssinceloaded) {
var timer=setTimeout("countdown()",1000)
if (displaycountdown=="yes") {
window.status="Page refreshing in "+reloadseconds+ " seconds"
}
}
else {
clearTimeout(timer)
window.location.reload(true)
}
}


body onload="starttime(); "


I didn't get any requirements for the signature


GeneralRe: Page Refresh Question Pin
Tom Delany23-Dec-08 10:33
Tom Delany23-Dec-08 10:33 
GeneralRe: Page Refresh Question Pin
ToddHileHoffer23-Dec-08 14:32
ToddHileHoffer23-Dec-08 14:32 
GeneralRe: Page Refresh Question Pin
Tom Delany29-Dec-08 10:04
Tom Delany29-Dec-08 10:04 
GeneralRe: Page Refresh Question Pin
Guffa30-Dec-08 10:01
Guffa30-Dec-08 10:01 
Questiondetailsview problem need help Pin
dream_liner_7e723-Dec-08 6:38
dream_liner_7e723-Dec-08 6:38 
QuestionMultiPart/Form-Data Pin
hammerstein0523-Dec-08 6:34
hammerstein0523-Dec-08 6:34 
QuestionHow to share NETCOBOL dll in .NET Framework2.0/3.5 in windows server 2003. Pin
kkb_200123-Dec-08 3:55
kkb_200123-Dec-08 3:55 
AnswerRe: How to share NETCOBOL dll in .NET Framework2.0/3.5 in windows server 2003. Pin
Christian Graus23-Dec-08 7:57
protectorChristian Graus23-Dec-08 7:57 
GeneralRe: How to share NETCOBOL dll in .NET Framework2.0/3.5 in windows server 2003. Pin
kkb_200123-Dec-08 21:30
kkb_200123-Dec-08 21:30 
QuestionDataGrid paging + SqlDataSource Pin
Blumen23-Dec-08 3:49
Blumen23-Dec-08 3:49 
AnswerRe: DataGrid paging + SqlDataSource Pin
ToddHileHoffer23-Dec-08 4:46
ToddHileHoffer23-Dec-08 4:46 
GeneralRe: DataGrid paging + SqlDataSource Pin
Blumen24-Dec-08 3:08
Blumen24-Dec-08 3:08 
GeneralRe: DataGrid paging + SqlDataSource Pin
ToddHileHoffer24-Dec-08 4:07
ToddHileHoffer24-Dec-08 4:07 
Questionmasterpage code Pin
gopinagam23-Dec-08 3:15
gopinagam23-Dec-08 3:15 
AnswerRe: masterpage code Pin
Abhijit Jana23-Dec-08 3:25
professionalAbhijit Jana23-Dec-08 3:25 
Questionhow to set Title Page Dynamically in Master Page? Pin
mr_muskurahat23-Dec-08 2:02
mr_muskurahat23-Dec-08 2:02 
AnswerRe: how to set Title Page Dynamically in Master Page? Pin
Abhijit Jana23-Dec-08 2:11
professionalAbhijit Jana23-Dec-08 2:11 

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.