Created
November 8, 2011 11:43
-
-
Save waldyrfelix/1347565 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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