Posts by Felipe Assunção • 1,202 points
71 posts
-
0
votes1
answer404
viewsA: Why can’t I see Form1.Cs
You’re coding in the file .design.cs instead of coding in the Behind code, the design files are generated and maintained by Visual Studio and you shouldn’t modify them.…
c#answered Felipe Assunção 1,202 -
1
votes2
answers784
viewsA: Visual Studio 2015 Hangs and not back when accessing cshtml page and inserted "<"
This problem has already been reported by microsoft is happening because the Visual Studio is coming without the Language Packs suitable, the download below should solve your problem: Download:…
-
3
votes2
answers403
viewsA: How to filter in LINQ for every X months?
Follow a way of doing, remembering that this will not be very performatic: var medicoes = Banco.CarregarListaMedicoes(); // Customize com a data desejada ou substitua por um DateTime.Now var data =…
-
4
votes2
answers6722
viewsA: Display input value date type
For this it is sufficient that the content of the variable $Dtsaida is in YYYY-MM-DD format see example below: <p>Data Saída:</p><input type="date" maxlength="10" id="saida"…
-
1
votes1
answer75
viewsA: Error connecting between BD tables
Simple, you are trying to make the association of a simple key with a composite key. And both sides of the relationship should contain the same fields, remove the composite key from the…
sql-serveranswered Felipe Assunção 1,202 -
1
votes2
answers46
viewsA: Error searching page data with AJAX
Whereas you just want to get an html helper $.load solves your problem, try using the implementation below: $(document).ready(function(){ $('#executaAjax').click(function(){…
-
0
votes1
answer544
viewsA: Add bookmark to Google map
Try something similar to this: function initialize() { var myLatlng = new google.maps.LatLng(28.3852338, -81.5638743); var mapOptions = { zoom: 15, center: myLatlng, panControl: false, draggable:…
-
2
votes1
answer167
viewsA: MVC# - Mongodb 2.0 dependency injection
Mongodb Driver Dependency Injection The driver of MongoDB is strongly coupled or you will not be able to modify the driver’s functionality easily since it does not use external dependencies (you are…
-
4
votes2
answers603
viewsA: ASP Classic runs on ASP.NET server?
IIS natively supports both Environments and generally host services and resource system administrators ASP Clássico qualified however, is not a premise. If the functionality is not enabled and you…
-
6
votes1
answer91
viewsA: arterySignalIr/Ping - What is causing this error?
This error only happens in Debug mode because of the feature Browser Linkfrom Visual Studio, you can choose the following options to solve your problem: Disable the Browser Link: (Recommended if you…
-
4
votes1
answer45
viewsA: How to add a feature to jQuery?
Considering that it had been commented by the friends above the jQuery.fn.extend restricts extensions to jQuery nodes by summarizing the extensions only applicable to jQuery type elements so you…
-
5
votes4
answers16259
viewsA: How to use Progressbar with Ajax and PHP?
Following a possible solution, this solution is based on the event subscribe progress of XMLHttpRequest used by the helper $.ajax jQuery. var progressBar = $(".progress-bar"); function…
-
1
votes2
answers302
viewsA: Change label class (icon-font) with click
Below is a solution to your problem: var $ = jQuery.noConflict(); $("nav li.abre-dropdown > a").on('click', function() { var $label = $(this).parent().find('> a > .icon-down-dir, > a…
-
2
votes1
answer1208
viewsA: How to leave a selected option
Here are some examples of how to select an option: // Selecionando o ultimo. $("option:last").prop('selected', 'true') // Selecionando o primeiro. $("option:first").prop('selected', 'true') //…
-
0
votes2
answers234
viewsA: Webforms Upload multiple files
Simply user multiple components of type asp:FileUpload and access them using their respective name in the desired event by following the example below; <asp:FileUpload ID="FileUpload1"…
-
1
votes4
answers1102
viewsA: Catch Divs with certain class
I believe this meets your need: $('.botaodeletar').on('click', function() { var $parent = $(this).parents('.containerMensagem') if (!$parent.is('.podedeletar')) { return alert('marque a caixinha…
-
4
votes1
answer786
viewsA: Is there a way to use two types of payment methods in a transaction on the market?
Unfortunately the current Free Market API does not yet allow multiple forms of payment per order, but you can manage this internally, and if necessary create two transactions for each order (do not…
-
0
votes2
answers2566
viewsA: Redirect Internal/external ip page
Confirm that I am correct, basically you provided an HTML page on IIS and can only access the respective by the correct internal IP? If yes try to verify these probable causes: Make sure your port…
-
0
votes4
answers959
viewsA: How to do a background cover on a separate div?
I believe this meets your need: .general { height: 800px; background: url('https://css-tricks.com/examples/FullPageBackgroundImage/images/bg.jpg'); background-position: right top; background-size:…
-
0
votes3
answers1293
viewsA: How to use ng-repeat in an object list?
This example demonstrates exactly its purpose: https://jsfiddle.net/9am2enqy/11/ Just add the variable to the scope.
-
2
votes3
answers89
viewsA: How to make several projects have the same post-compilation event?
The visual studio allows you to create post-build events (postbuild Events) with the use of this feature you can create bat files to proceed with whatever is of interest to you, the bad thing is…