Posts by Marioto lucas • 11 points
6 posts
-
0
votes1
answer65
viewsQ: Update location from time to time when an application is running in the background
I have an app that should save the user’s location every 1 minute. I created a service running in the background that does this. While the screen is on and the application is in the foreground, it…
-
0
votes1
answer278
viewsQ: Error adding ON DELETE CASCADE two Foreign Keys from the same table
I am deploying a table to save the messages, in this table I have source users (sender) and destination user(recipient) from the same table: user. When trying to add the constraints to the message…
-
0
votes1
answer499
viewsQ: How to disable page caching
I have a page that saves the user’s photo, when editing the photo the cache always keeps taking the old photo to display. I’ve tried using : and tried to use some variations of it and it doesn’t…
-
1
votes0
answers26
viewsQ: Como disability via Javascript que os cookies carregauem dados em apenas uma página especificas
I have a registration page that has email and password, when the user clicks to save email and password in the login, the auto fill of the coockies already fill the registration data. I can’t clean…
-
0
votes1
answer86
viewsA: C# controller function receive an array
I got it here that way: var opt = new Array(); $("#selTipLocal").change(function () { $('#selTipLocal > option:selected').each( function (i) { opt[i] = $(this).val(); opt[i] = parseInt(opt[i]); }…
-
0
votes1
answer86
viewsQ: C# controller function receive an array
I need to take a select array and send it to a function in the controller, but it always arrives as null, even sending the full array. Below is the code: Controller: [AcceptVerbs(HttpVerbs.Get)]…