Click here to Skip to main content
16,005,141 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDATA LIST PROBLEM IN ASP.NET ver 1.1 Pin
Faisal Khatri15-Oct-06 10:20
Faisal Khatri15-Oct-06 10:20 
AnswerRe: DATA LIST PROBLEM IN ASP.NET ver 1.1 Pin
Mike Ellison15-Oct-06 16:04
Mike Ellison15-Oct-06 16:04 
GeneralRe: DATA LIST PROBLEM IN ASP.NET ver 1.1 Pin
Faisal Khatri15-Oct-06 18:37
Faisal Khatri15-Oct-06 18:37 
QuestionAccess Function in Page from App_Code??? Pin
code-frog15-Oct-06 8:00
professionalcode-frog15-Oct-06 8:00 
AnswerRe: Access Function in Page from App_Code??? Pin
Mike Ellison15-Oct-06 9:12
Mike Ellison15-Oct-06 9:12 
GeneralRe: Access Function in Page from App_Code??? Pin
code-frog15-Oct-06 9:21
professionalcode-frog15-Oct-06 9:21 
GeneralRe: Access Function in Page from App_Code??? Pin
Mike Ellison15-Oct-06 9:33
Mike Ellison15-Oct-06 9:33 
QuestionRefresh? Pin
drc_no115-Oct-06 7:43
drc_no115-Oct-06 7:43 
Hello again! I'm having some troubles with a web page. i want it to refresh every n=5 seconds. so i thought of drag&drop-ing a timer in the UI. but there was no timer. so i had to create one from code.
<br />
using System.Timers;<br />
<br />
public partial class _Default : System.Web.UI.Page <br />
{<br />
    Timer timer1 = new Timer();<br />
    void ini() {<br />
        this.timer1.Interval = 5000;<br />
        timer1.AutoReset = true;<br />
        timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.timer1_elapsed);<br />
        timer1.Start();<br />
    }<br />
    public void timer1_elapsed(object sender, EventArgs e){<br />
        <br />
    }<br />
protected void Page_Load(object sender, EventArgs e)<br />
    {<br />
        ini();<br />
    }<br />

the problems seems to be that the elapsed event never occurs.
Please help me. if you know an easier way to refresh the web page and u'd share it to me, i'd be thankful.

Many thanks in advance!
AnswerRe: Refresh? Pin
Guffa15-Oct-06 16:52
Guffa15-Oct-06 16:52 
GeneralRe: Refresh? Pin
miniThomas15-Oct-06 21:06
miniThomas15-Oct-06 21:06 
GeneralRe: Refresh? Pin
miniThomas15-Oct-06 21:07
miniThomas15-Oct-06 21:07 
QuestionPop Up Problem ... Pin
just3ala215-Oct-06 2:49
just3ala215-Oct-06 2:49 
AnswerRe: Pop Up Problem ... Pin
Guffa15-Oct-06 3:54
Guffa15-Oct-06 3:54 
GeneralRe: Pop Up Problem ... Pin
just3ala215-Oct-06 20:22
just3ala215-Oct-06 20:22 
QuestionASP Menu Pin
Ahmed_soft14-Oct-06 23:19
Ahmed_soft14-Oct-06 23:19 
Questionsite map path [modified] Pin
kitokatakito14-Oct-06 22:59
kitokatakito14-Oct-06 22:59 
Questionasp Pin
athivak14-Oct-06 18:47
athivak14-Oct-06 18:47 
AnswerRe: asp Pin
Tad McClellan15-Oct-06 17:24
professionalTad McClellan15-Oct-06 17:24 
QuestionGood solution to updating site in ASP.NET 2.0 ??? Pin
devboycpp14-Oct-06 8:41
devboycpp14-Oct-06 8:41 
AnswerRe: Good solution to updating site in ASP.NET 2.0 ??? Pin
Tad McClellan15-Oct-06 17:22
professionalTad McClellan15-Oct-06 17:22 
Questionget value as a number Pin
TheEagle14-Oct-06 8:31
TheEagle14-Oct-06 8:31 
AnswerRe: get value as a number Pin
Guffa14-Oct-06 10:08
Guffa14-Oct-06 10:08 
GeneralRe: get value as a number Pin
TheEagle14-Oct-06 17:33
TheEagle14-Oct-06 17:33 
QuestionLinking data inside datagrid using ASP.net and VB scripting Pin
MohamedRadhi14-Oct-06 7:08
MohamedRadhi14-Oct-06 7:08 
AnswerRe: Linking data inside datagrid using ASP.net and VB scripting Pin
TheEagle14-Oct-06 8:51
TheEagle14-Oct-06 8:51 

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.