Click here to Skip to main content
15,883,883 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
HI I am developing a program which requires to read updated value of a Label control in updatePanel using javascript code please help

I am using following javascript code to do the same...
but not succeeded..some need some help



C#
<script>
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler);

    function endRequestHandler()
    {
    var userID = '<%= Label1.Text %>';
        alert(userID);
        SelectSibling(event);
    }
</script >
</pre>


It returns the first value always....but I need the current value(updated Value)..

Thanks in Advance.
Posted
Comments
vinodkumarnie 1-Feb-13 4:46am    
can you share your source code...?
Raaj_007 1-Feb-13 5:23am    
Here is the code

<pre>

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test</title>

</head>
<body>
<form id="frmGridView" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"/>

<script type="text/javascript" language="javascript">
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler);

function endRequestHandler()
{

var userID = "";
alert(userID);
SelectSibling(event);
}

</script>
<asp:UpdatePanel ID="updatePanel1" runat="server" UpdateMode="Conditional">
<contenttemplate>

<asp:Timer ID="Timer1" runat="server" Interval="300" ontick="Timer1_Tick">

<asp:Label ID="Label1" runat="server" Text="Label">
<br />

<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" />
</Triggers>

</form>
</body>
</html>





protected void Timer1_Tick(object sender, EventArgs e)
{
Label1.Text=(i++).ToString();
gridView.DataSource = GetDataSource();
gridView.DataBind();
}

</pre>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900