In my .Net MVC project, I can not get a JavaScript result that is in view
@using Forte.Rastreador.ViewModels
@model SuperViewModel
<script src="~/Scripts/jquery-ui-1.8.24.min.js"></script>
<script type="text/javascript">
$(function () {
$("#datepicker").datepicker();
});
</script>
<fieldset>
<legend>Pessoa Física:</legend>
@Html.Label("CPF: ")
@Html.TextBoxFor(m => m.CPFPessoa, new { maxlength = "11" })
<br />
@Html.Label("N° de Identidade: ")
@Html.TextBoxFor(m => m.RGPessoa)
<br />
@Html.Label("Data de Nascimento: ")
@Html.TextBoxFor(m => m.DataNascimento, new { id = "datepicker"})
<br />
@Html.Label("Sexo: ")
@Html.DropDownListFor(m => m.Sexo, Model.GeneroList)
<br />
@Html.Label("Estado Civil: ")
@Html.DropDownListFor(m => m.EstadoCivil, Model.EstadosCivisList)
</fieldset>