I would like to know how I can collect a View data, and I'm already using @model System.data.dataset.
@model System.Data.DataSet
@{
ViewBag.Title = "CadastroPorto";
}
I need to collect the data that will be typed in this part below when I click the button:
<section class="content-header">
<div class="breadcrumb">
<button type="button" class="btn btn-primary">Cadastrar novo Porto</button>
</div>
<div class="box-body">
<div class="form-group">
<label>Nome do Porto</label>
</div>
</div>
</section>