Posts by Italo • 117 points
8 posts
-
3
votes0
answers533
viewsQ: IIS configuration to authenticate using Active Directory
I created a web system using C# and use a routine to authenticate the user by taking the Active Directory user. However my system is not getting the AD user: it is catching the user from pool of the…
-
3
votes3
answers721
viewsQ: Why isn’t onBlur being executed?
I was wanting to run a function in Javascript when the dropdown lose focus. I’m doing it this way, using onBlur, and it’s not working: function DesabilitaFiltro() { alert("ok"); } <div…
-
1
votes3
answers163
viewsQ: Viewdata is not displaying message
I’m trying to send a message from Controller to View using Viewdata, but it’s not displaying the message. When I click on the "Check" button of the View it is to call the method Verificar() from…
-
0
votes1
answer1206
viewsQ: Why is the type=Submit button not submitting?
I am creating a form within the modal, when I try to submit it, not submit it. My view: @model GerenciadorDeAtividades.Dominio.AtividadeDominio @{ Layout = null; ViewBag.Title = "Alterar Status da…
-
0
votes3
answers1920
viewsQ: Search database information by selecting a field
How to select a field and pull the information related to it? For example, I wanted to select a user and when I selected it appears in the fields type Name, Address, Cpf and etc all filled,…
-
1
votes2
answers2725
viewsQ: Error: String not recognized as valid datetime
I’m trying to convert a string q I pull from the database with the instruction DateTime PrevisaoDataInicio = DateTime.Parse(reader["PrevisaoDataInicio"].ToString()) And makes the following mistake:…
-
2
votes1
answer541
viewsQ: Why isn’t my CONTROLLER picking up VIEW fields?
I am making a form in the VIEW, but the fields where I use radio and select(option) are not passing their values to the Controller. If anyone knows why. My view: @model…
-
1
votes2
answers3282
viewsQ: Use Submit to submit a form, within modal, using bootstrap
I’m trying to submit a form within a modal, only it’s not submitting what I’m sending in the tag . My view: <button type="button" class="btn btn-primary" data-toggle="modal"…