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

ASP.NET

 
QuestionRe: how to select an item in datalist Pin
sarang1214-Nov-08 16:56
sarang1214-Nov-08 16:56 
AnswerRe: how to select an item in datalist Pin
Prasanna Kumar Pete4-Nov-08 16:58
Prasanna Kumar Pete4-Nov-08 16:58 
QuestionUniversity Information System/Univerity Managemeny System Pin
Gjm4-Nov-08 13:32
Gjm4-Nov-08 13:32 
AnswerRe: University Information System/Univerity Managemeny System Pin
Mark Churchill4-Nov-08 13:40
Mark Churchill4-Nov-08 13:40 
AnswerRe: University Information System/Univerity Managemeny System Pin
Blue_Boy4-Nov-08 14:30
Blue_Boy4-Nov-08 14:30 
AnswerCP IGNORE: homework Pin
leckey4-Nov-08 14:35
leckey4-Nov-08 14:35 
AnswerRe: University Information System/Univerity Managemeny System Pin
Ashfield4-Nov-08 21:24
Ashfield4-Nov-08 21:24 
QuestionHow do I do partial update in multiple updatepanels with timer Pin
kmuthuk4-Nov-08 10:33
kmuthuk4-Nov-08 10:33 
Hi there

I have multiple update panels and one timer on my page. But only one updatepanel has the trigger for the timer. What happens is all my update panel get refreshed. How do i make only one updatepanel that has timer control refreshed and not others? In this case, i don't want "updatepanel2" gets updated.

Any help would be appreciated.

thanks

Muthu.


Here is my code and page:
=========================

<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</form>

protected void Page_Load(object sender, EventArgs e)
{
Label2.Text = "UpdatePanel2 refreshed at: " + DateTime.Now.ToLongTimeString();
}
protected void Timer1_Tick(object sender, EventArgs e)
{
Label1.Text = "UpdatePanel1 refreshed at: " + DateTime.Now.ToLongTimeString();
}
AnswerRe: How do I do partial update in multiple updatepanels with timer Pin
Venkatesh Mookkan4-Nov-08 15:14
Venkatesh Mookkan4-Nov-08 15:14 
Questionown email sending Pin
razikang4-Nov-08 10:21
razikang4-Nov-08 10:21 
AnswerCP Ignore - spamming the site Pin
Dave Kreskowiak4-Nov-08 10:37
mveDave Kreskowiak4-Nov-08 10:37 
AnswerREPORTED AS ABUSE Pin
leckey4-Nov-08 14:28
leckey4-Nov-08 14:28 
QuestionGeneral Question About Popup Pin
Davidv1234-Nov-08 6:48
Davidv1234-Nov-08 6:48 
QuestionExtraction of datas Pin
John.L.Ponratnam4-Nov-08 4:30
John.L.Ponratnam4-Nov-08 4:30 
AnswerRe: Extraction of datas Pin
Prasanna Kumar Pete4-Nov-08 16:18
Prasanna Kumar Pete4-Nov-08 16:18 
GeneralRe: Extraction of datas Pin
John.L.Ponratnam9-Nov-08 17:20
John.L.Ponratnam9-Nov-08 17:20 
QuestionHow to add New Row to a datagrid ? [modified] Pin
Prasadsm4-Nov-08 2:35
Prasadsm4-Nov-08 2:35 
QuestionHelp needs in Logging In Pin
Senthil S4-Nov-08 1:53
Senthil S4-Nov-08 1:53 
AnswerRe: Help needs in Logging In Pin
cyber-drugs4-Nov-08 2:14
cyber-drugs4-Nov-08 2:14 
GeneralRe: Help needs in Logging In Pin
Senthil S4-Nov-08 2:19
Senthil S4-Nov-08 2:19 
AnswerRe: Help needs in Logging In Pin
saanj4-Nov-08 6:03
saanj4-Nov-08 6:03 
AnswerRe: Help needs in Logging In Pin
D4ever6-Nov-08 8:17
D4ever6-Nov-08 8:17 
QuestionUsers Bypass the Login Screen Pin
Vimalsoft(Pty) Ltd4-Nov-08 1:26
professionalVimalsoft(Pty) Ltd4-Nov-08 1:26 
AnswerRe: Users Bypass the Login Screen Pin
Brij4-Nov-08 2:47
mentorBrij4-Nov-08 2:47 
GeneralRe: Users Bypass the Login Screen Pin
Vimalsoft(Pty) Ltd4-Nov-08 2:54
professionalVimalsoft(Pty) Ltd4-Nov-08 2:54 

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.