Ciao ragazzi, come apro una finestra pop-up in c#, devo farlo attraverso un bottone che fa prima un controllo lo impostato così ecco il cod:
Factory miaFac=new Factory();
System.Data.SqlClient.SqlConnection miaCon=miaFac.OpenConnection();
if (this.check_telef.Checked.Equals(true)||this.chek_campione.Checked.Equals(true)||this.chek_servizi.Checked.Equals(true))
{
string chiave=Session["KEY"].ToString();
string controlla="SELECT TELEFONO,INDIRIZZO FROM ANAGRAFICA WHERE KEYUTENTE='"+chiave+"'";
System.Data.DataTable ver=miaFac.Select(controlla,miaCon);
System.Data.DataRow trova=ver.Rows[0];
string tel=trova["TELEFONO"].ToString();
string ind=trova["INDIRIZZO"].ToString();
string telefono="";
string indirizzo="";
if (tel.Equals(telefono)||ind.Equals(indirizzo))
{
this.btn_invia.Attributes.Add("onclick", "window.open ('video.aspx','scrollbars=no,resizable=no, width=200,height=200,status=no,location=no,toolbar=no')");
}else {}
Jack