I need to capture the value of a label (c #) that has been inserted via Jquery, eg:
<asp:Label runat="server" ID="lblIPLocal" Visible="true"></asp:Label>
//Alimenta a Label
$("[id*=lblIPLocal]").text("teste");
//Porem depois que alimenta a label retorna nulo
string dsUserIP = lblIPLocal.Text;