Click here to Skip to main content
15,925,181 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionContentPlaceHolder alignment Pin
msqar10-Mar-11 7:59
msqar10-Mar-11 7:59 
AnswerRe: ContentPlaceHolder alignment Pin
i gr810-Mar-11 9:44
i gr810-Mar-11 9:44 
GeneralRe: ContentPlaceHolder alignment Pin
msqar11-Mar-11 2:58
msqar11-Mar-11 2:58 
Question'system.web.extensions' is already defined Pin
vkumar099-Mar-11 22:40
vkumar099-Mar-11 22:40 
AnswerRe: 'system.web.extensions' is already defined Pin
vkumar099-Mar-11 23:24
vkumar099-Mar-11 23:24 
GeneralDon't be so impatient Pin
Not Active10-Mar-11 2:33
mentorNot Active10-Mar-11 2:33 
AnswerRe: 'system.web.extensions' is already defined Pin
Not Active10-Mar-11 2:37
mentorNot Active10-Mar-11 2:37 
General[Reportviewer] How to Sum value of above row Pin
joeyan9-Mar-11 20:28
joeyan9-Mar-11 20:28 
GeneralRe: [Reportviewer] How to Sum value of above row Pin
nainakarri10-Mar-11 21:55
nainakarri10-Mar-11 21:55 
QuestionHow to best secure a betting information web site. Pin
Brady Kelly9-Mar-11 19:37
Brady Kelly9-Mar-11 19:37 
AnswerRe: How to best secure a betting information web site. Pin
Dalek Dave16-Mar-11 12:26
professionalDalek Dave16-Mar-11 12:26 
QuestionMasterpages Pin
msqar9-Mar-11 7:58
msqar9-Mar-11 7:58 
AnswerRe: Masterpages Pin
Not Active9-Mar-11 8:25
mentorNot Active9-Mar-11 8:25 
GeneralRe: Masterpages Pin
msqar9-Mar-11 8:30
msqar9-Mar-11 8:30 
GeneralRe: Masterpages Pin
Not Active9-Mar-11 8:55
mentorNot Active9-Mar-11 8:55 
GeneralRe: Masterpages Pin
msqar9-Mar-11 9:07
msqar9-Mar-11 9:07 
QuestionCreating cookies with HttpCookie vs. Response.Cookies Pin
goodideadave9-Mar-11 6:48
goodideadave9-Mar-11 6:48 
QuestionGridview vertically Pin
prakulsol9-Mar-11 6:15
prakulsol9-Mar-11 6:15 
AnswerRe: Gridview vertically Pin
Ali Al Omairi(Abu AlHassan)9-Mar-11 12:01
professionalAli Al Omairi(Abu AlHassan)9-Mar-11 12:01 
AnswerRe: Gridview vertically Pin
thatraja9-Mar-11 15:03
professionalthatraja9-Mar-11 15:03 
AnswerRe: Gridview vertically Pin
Prasanta_Prince14-Apr-11 1:54
Prasanta_Prince14-Apr-11 1:54 
QuestionHow to use Process Monitor to determine which DLL is causing a BadImageFormatException. [modified] Pin
Brady Kelly8-Mar-11 19:41
Brady Kelly8-Mar-11 19:41 
QuestionAutorefresh in time interval Pin
prakulsol8-Mar-11 17:09
prakulsol8-Mar-11 17:09 
AnswerRe: Autorefresh in time interval Pin
Pravin Patil, Mumbai8-Mar-11 21:10
Pravin Patil, Mumbai8-Mar-11 21:10 
AnswerRe: Autorefresh in time interval Pin
goodideadave9-Mar-11 8:46
goodideadave9-Mar-11 8:46 
Add
Async="true"
to the Page directive, like so:

<%@ Page Async="true" Language="C#" AutoEventWireup="true" CodeFile="ProviderAlerts.aspx.cs" Inherits="ProviderAlerts" %>


Then, add this javascript:
<script type="text/javascript">
    <!-- Begin
    function reFresh() {
      location.reload(true)
    }
    /* Set the number below to the amount of delay, in milliseconds,
    you want between page reloads: 1 minute = 60000 milliseconds. */
    window.setInterval("reFresh()",300000);
    // End -->
</script>


This reloads the page every five minutes.
My other signature is witty and insightful.

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.