Skip to content

Instantly share code, notes, and snippets.

View alfonsomozkoh's full-sized avatar

Alfonso Mozko H. | Un Estudiante de Informática alfonsomozkoh

View GitHub Profile
@Javlopez
Javlopez / filter.html
Created April 27, 2011 17:46
Solo numeros con 1 punto y maximo dos decimales
<script type="text/javascript">
<!--
function filterFloat(evt,input){
// Backspace = 8, Enter = 13, ‘0′ = 48, ‘9′ = 57, ‘.’ = 46, ‘-’ = 43
var key = window.Event ? evt.which : evt.keyCode;
var chark = String.fromCharCode(key);
var tempValue = input.value+chark;
if(key >= 48 && key <= 57){
if(filter(tempValue)=== false){
return false;
@phpleo
phpleo / 1.sql
Created January 10, 2011 16:58
tsql: Creando una tabla temporal y llenandola con registros de una tabla existente
-- Crear tabla temporal con los valores actuales del campo EnEjecucion
-- eliminando si existe
IF OBJECT_ID( N'tempdb..#ProyectoEnejecucionEstado') IS NOT NULL
DROP TABLE #ProyectoEnejecucionEstado;
GO
-- creando la tabla temporal
CREATE TABLE #ProyectoEnejecucionEstado (
CodigoProyecto CHAR(6),