RSS
Recortes: 31
Registrado: 30/8/2006
sql (7)
Flash (5)
vbnet (4)
8 (4)
javascript (3)
html (3)
vb (3)
swf (2)
url (2)
csharp (2)
columna (2)
PHP (2)
css (2)
movieclip (2)
un (2)
existe (2)
Centrar (2)
forma (2)
para (2)
actionscript (2)
net (2)
busca (1)
formato (1)
passwords (1)
titulo (1)
en (1)
mssql (1)
createEmptyMovieClip (1)
seguir (1)
web (1)
cargado (1)
horizontal (1)
porcentaje (1)
almacenados (1)
Firefox (1)
numero (1)
temporizado (1)
DIV (1)
moo (1)
sp (1)
checkbox (1)
implementacion (1)
radio (1)
buscar (1)
fx (1)
pesos (1)
todas (1)
20 (1)
encriptacion (1)
multithreading (1)
sysobjects (1)
load (1)
server (1)
where (1)
cargar (1)
procedimientos (1)
vacio (1)
array (1)
otro (1)
texto (1)
double (1)
mouse (1)
index (1)
redireccion (1)
ventana (1)
busqueda (1)
head (1)
tus (1)
2005 (1)
exist (1)
navidad (1)
tabla (1)
loadMovie (1)
service (1)
Y (1)
case (1)
HTMLCSS (1)
procedures (1)
validacion (1)
asp (1)
form (1)
paginas (1)
threading (1)
dropdown (1)
stored (1)
con (1)
items (1)
redirecicon (1)
version (1)
button (1)
hilos (1)
pop (1)
negativos (1)
table (1)
dataset (1)
mensaje (1)
setInterval (1)
IE (1)
progreso (1)
validar (1)
barra (1)
tiempo (1)
electronico (1)
Mozilla (1)
string (1)
correo (1)
javascipt (1)
script (1)
vertical (1)
c (1)
historia (1)
popup (1)
up (1)
facil (1)
tags (1)
dentro (1)
Meta (1)
signo (1)
charp (1)
imagen (1)
python (1)
Private Sub despliegaContactos(ByVal contactos As DataSet) dropdown.Items.Clear() dropdown.DataTextField = "Nombre" dropdown.DataValueField = "nContactoId" dropdown.DataSource = contactos.Tables(0) dropdown.DataBind() End Sub
using System; using System.Threading; namespace CSharpSchool { class Test { static void Main() { Thread firstThread = new Thread(new ThreadStart(fun1)); Thread fsecondThread = new Thread(new ThreadStart(fun2)); firstThread.Start(); secondThread.Start(); console.WriteLine("End of Main()"); } public static void Fun1() { for (int i=1; i<=5; i++) { Console.WriteLine("Fun1() writes: {0}", i); } } public static void Fun2() { for (int i=1; i<=6; i++) { Console.WriteLine("Fun2() writes: {0}", i); } } } }
CREATE PROCEDURE nombredelsp (@parametro1 int, @parametro2 varchar(10), @parametro3 integer) AS begin /* Descripcion del sp */ /* Aqui generalmente incluyo las declaraciones de las variables para Hacer pruebas */ /* En esta parte va el procedimiento */ ENDY para actualizar solo se cambia el
CREATEcomo
ALTER
SELECT * FROM tabla_s WHERE columna = case when condicion then consecuencia [when condicion then consecuencia]* [else consecuencia]* end
SELECT name FROM sysobjects WHERE name LIKE '%loquebuscamos%'
http://username:password@hostname/path/directory/file.php?arg=
function encontrar_en_array($array,$object){ for($i=0;$i<=array_count_values($array);$i++){ if ($object==$array[$i]) return $i; } return -1; }
// JavaScript Document function popUp(URL,wide,high) { day = new Date(); id = day.getTime(); eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+wide+",height="+high+"');"); }
body{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #517EA8; background-color: #BCCFE0; text-align: center; min-width: 780px; } #wrapper { width:780px; position:absolute; top:50%; left:50%; margin:-235px auto auto -390px; border:0px solid black; text-align:center; }
var pagina = 'http://www.tiexo.com'; var segundos = 5; function redireccion() { document.location.href=pagina; } setTimeout("redireccion()",segundos);Oh! y juanjo me dice que tambien se hace de esta forma, creo que es mas optimo!
<META HTTP-EQUIV="Refresh" CONTENT="5; URL=http://www.tiexo.com">Gracias Juanjo