Posts by Anderson Souza • 376 points
15 posts
-
0
votes1
answer519
viewsA: Ionic 2 - Custom tabIcon images do not appear on the device
After searching and placing the question in the group of Ionic from Facebook the solution is to put the name of the image folder as img or was putting as images and Ionic was not recognizing.…
-
0
votes1
answer519
viewsQ: Ionic 2 - Custom tabIcon images do not appear on the device
I’m trying to put some custom icons (in svg or png) in my app tab, Ionic serves works smoothly, but when running on the device (android) the icon does not appear, I’m imagining it may be permission…
-
2
votes1
answer150
viewsA: Connection string for different logged in users
you can use the dynamic string Connection approach by changing the data from a generic string Connection to the database data the user should use, the storage of the connection data can be in the…
-
2
votes1
answer100
viewsQ: Pre-filled model returns null in Httppost
I’m building a page in the ASP.NET project where I have a model that contains 2 lists, which I fill one initially at get and then direct to the View where I fill another list, but when receiving…
-
0
votes1
answer258
viewsQ: ASP.NET MVC Integration of accounts with office365 authentication
I have a project in Asp.net MVC 4 and the users registered by the system itself, however the need arose to authenticate them by office365, that is, when accessing office365 the system recognize the…
-
1
votes1
answer1164
viewsQ: Remove Git Binding in the ASP.NET MVC Project
I started an ASP.NET MVC project and initially used git for code control, but now I want to transfer to Team Foundation Services, as I do to unlink my project from git?
-
0
votes1
answer112
viewsQ: Knowing Modelstate in javascript dynamically
I am developing an application in ASP.NET MVC 5 and I have a problem in putting a charging modal while the form is saved, because when there is something invalid in the form javascript does not…
-
3
votes2
answers1052
viewsQ: Pass data encrypted by URL in ASP.NET MVC
I need to pass a link, but I didn’t want to leave it too exposed, I would like to know how to encrypt at least the object id. I created a class for Cryptography, only it generates "/" and this puts…
-
1
votes2
answers1501
viewsA: Dropdown Menu ASP.NET MVC 5
After putting the script below the menu worked. <script> $(document).ready(function () { $('.dropdown-toggle').dropdown(); }); </script>
-
1
votes2
answers1501
viewsQ: Dropdown Menu ASP.NET MVC 5
I need to change the menu to apply a Dropdownlist, but I’m having difficulty. I’m following the footsteps of the bootstrap site, but when click does not appear the submenu, follow the code below:…
-
8
votes2
answers1697
viewsQ: Control view component visibility in the ASP.NET MVC 5 controller
I am refactoring a project in ASP.NET MVC 5, implementing some good practices and researching, it was mentioned that the use of if na view(Razor) is not the best practice, only that I use it to show…
-
0
votes0
answers253
viewsQ: Using Claims to replace Sessions
I am refactoring an application that I am developing, applying good practices in ASP.NET MVC, there arose a difficulty in understanding Claims and how to apply it to replace the Session use. When I…
-
3
votes1
answer455
viewsQ: Consult in several fields of the record in a single query
I am developing an item list filter, and would like to filter by any term of the item record. I’ve seen this work in Angular, but I’m developing for ASP.NET MVC 5 and using the Entity Framework +…
-
3
votes1
answer1543
viewsQ: Correct use of async and await in Asp.Net
I am creating an asynchronous method for sending Emails from the opening or changing of the object, but when calling the method of sending email I have to put the await in front and the return of…
-
0
votes1
answer114
viewsQ: Error reopening Map in Fragment inside Drawerlist
I’m developing an Android app and I’m having a navigation problem between Fragments. I created a drawerList and in it I have some Ragments, in one of these Ragments I have a map, when I initially…