Skip to content

Instantly share code, notes, and snippets.

@diegocaxito
diegocaxito / html5validationSample
Created December 13, 2011 10:14
Simple html5 validation formats
<!DOCTYPE html>
<html lang="en">
<head>
<title>Teste de Form</title>
</head>
<body>
<form>
<label for=form-name>Name</label>
<input name=form-name id=form-name type=text required />
<label for=form-email >Email</label>
@diegocaxito
diegocaxito / WCFWebApiGenericSample.cs
Last active September 27, 2015 15:48
WCF Web Api with generic get method
using System.Linq;
using System.Net;
using System.ServiceModel;
using System.ServiceModel.Web;
using ContactManager.Infrastructure;
using ContactManager.Repositories;
using ContactManager.Resources;
using Microsoft.ApplicationServer.Http.Dispatcher;
namespace ContactManager.APIs