Skip to content

Instantly share code, notes, and snippets.

@fabriciosanchez
Created September 8, 2013 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabriciosanchez/6486870 to your computer and use it in GitHub Desktop.
Save fabriciosanchez/6486870 to your computer and use it in GitHub Desktop.
Código da view com o formulário a ser serializado.
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Serialização</title>
</head>
<body>
<fieldset>
<legend>Formulário a ser serializado</legend>
<form>
<label for="Nome">Nome:</label>
<input type="text" id="Nome" name="Nome" />
<label for="Email">E-mail:</label>
<input type="text" id="Email" name="Email" />
<input type="button" id="Botao" name="Botao" value="Serializar" />
</form>
<div id="Resultado" style="color: red;"></div>
</fieldset>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment