Skip to content

Instantly share code, notes, and snippets.

@waldyrfelix
Created November 8, 2011 11:43
Show Gist options
  • Save waldyrfelix/1347565 to your computer and use it in GitHub Desktop.
Save waldyrfelix/1347565 to your computer and use it in GitHub Desktop.
@section estilo {
<link href="@Url.Content("~/Scripts/uploadify/uploadify.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/themes/smoothness/jquery-ui.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/jquery.Jcrop.css")" rel="stylesheet" type="text/css" />
}
@section scripts {
@JavaScriptHelper.CadastroDeCurso() @* Isto não deveria estar aqui *@
}
@using (Html.BeginForm("Cadastrar", "Curso", FormMethod.Post, new { id = "frmCadastro", enctype = "multipart/form-data" }))
{
@Html.ValidationSummary(true)
@Html.Partial("_Salvar") @* Deveria estar dentro da partial _Salvar.cshtml *@
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment