How can I pass a Label variable that stores a name to another aspx page called Registers? I open the Records page by means of a button like a pop-up window:
protected void Ver_Click(object sender, EventArgs e)
{
string vtn = "window.open('VerDetalle.aspx','Dates','scrollbars=yes,resizable=yes','height=90', 'width=50')";
ScriptManager.RegisterStartupScript(this, this.GetType(), "popup", vtn, true);
}
For that reason I do not intend to use Response.Redirect. Could you help me with some other form?