Salve a tutti ho il seguente problema, penso di essere vicino alla soluzione ma mi sfugge via!!!

codice:
<%if ......... then
     elseif rsSms("Cellulare")<>"" and rsSms("CellularePadre")="" and rsSms("CellulareMadre")<>"" then
		Cell = "+39"&rsSms("Cellulare")
		CellStart = CellStart &","& Cell
		LunghezzaCell = len(CellStart)-1
		CellFinale = right(CellStart,LunghezzaCell)			
		CellM = "+39"&rsSms("CellulareMadre")
		CellStartM = CellStartM &","& CellM
		LunghezzaCellM = len(CellStartM)-1
		CellFinaleM = right(CellStartM,LunghezzaCellM)
		response.redirect("https://www.gatewaysms.it/gateway.php?login=XXXXXXXX&pwd=YYYYYYYYY&testo=CCC&numero="&CellFinale)	
    end if
Se uso il redirect funziona benissimo, ma io non voglio fare redirect a quella pagina ma solamente eseguire il comando https:.........
Come faccio??
Grazie a tutti