Posts by Kelvin Dules • 316 points
5 posts
-
1
votes1
answer27
viewsA: Parameterize with Restshap
The way you’re going host it will be integrated into the URL, this way: api/BancoWS?host=valor. Therefore, to receive the value correctly you may need to explain with [FromUri] public SalvarDto…
c#answered Kelvin Dules 316 -
0
votes3
answers47
viewsA: same origin policy how to circumvent
You’re not having a problem with Policy of "same origin", yet. To try to access the contents of Parent you can use something like parent.document.getElementsByClassName('suaClasse')[0].innerText and…
-
4
votes1
answer67
viewsA: Is there a correct way to pass parameters to search?
Following the good practice of a HTTP GET you would probably need: Use the noun in the plural, where Salesrecord become Salesrecords Parameterize dates as filters for the Salesrecords feature:…
-
1
votes1
answer188
viewsA: Site MVC C# displays the message "401 - Unauthorized: Access is denied due to invalid credentials." after logging into external access
Make sure credentials for anonymous users are targeted correctly on Authentication: Click on Anonymous Authentication; Click on Edit, in the upper extreme right; See if the selected user is the…
-
8
votes4
answers3477
viewsA: Press button with keyboard enter key
It is quite possible using javascript only. Using Keyboardevent document.addEventListener('keydown', function(e) { if(e.key == "Enter"){ document.getElementById("btFechar").click(); } }); <input…