Lang: java
Get the source!
Actions
Recent Pastes
text846557233 (f0nz julio 29, 2010 at 16:58)
FLOWERS (f0nz julio 29, 2010 at 16:27)
THE CAVEMAN (f0nz julio 29, 2010 at 16:36)
STARS (f0nz julio 29, 2010 at 16:49)
cherokee failing to start within a FreeBSD Jail (Wu julio 29, 2010 at 13:41)
TinyHTTPProxy (Wu julio 20, 2010 at 17:43)
some dirty z5 html rendered code (Wu julio 15, 2010 at 19:02)
As per request (MarcosBL julio 09, 2010 at 14:28)
using openssl to test aTLS smtp connection (Wu julio 09, 2010 at 12:25)
tcsh358213545 ( julio 01, 2010 at 18:37)
About
This is the paste site from e-shell.org, my personal website. It is an instance of the CodeSharingZ Zope Product (just take a look at http://zopecode.codigo23.net/wiki/CodeSharingZ to learn more about it). Feel free to paste whatever you want, but notice that all the pastes in here are deleted in a regular basis.
Links
L java
(http://www.java.com)

Confirm JS

1 function confirma(accion,texto) {
2     var texto = (texto == null) ? "¿ Estás seguro ?" : texto;
3     var accion = (accion == null) ? "alert('No se ha indicado acción a realizar')" : accion;
4 	input_box=confirm(texto);
5 	if (input_box==true) { 
6 		eval(accion);
7 	}
8 }
Pasted by MarcosBL on marzo 05, 2010 at 18:53 | Lang: java | (8 lines of code)