ciao tutti,
io ho una textbox che è stato impostato la visiblity a FALSE.

codice:
<asp:textbox id="postback_memory" runat="server" AutoPostBack="True" Width="97px" ReadOnly="True" Visible="False">true</asp:textbox>

questa property però mi creare un errore nel mio script "javascript" perche non lo vede???

codice:
	var d = document.getElementById("postback_memory");
	if (d.value=="true")
tutto si risolve togliendo il visible property.... @_@ però questo non è possibile.