Posts by Jefferson Souza • 167 points
11 posts
-
-4
votes2
answers546
viewsQ: Publish my system to IIS and it is not loading multiple files
I published my system on IIS (locally) and when I access it, it does not load a range of required application files. I believe I published it correctly, but I’m not getting around to solving this…
-
1
votes1
answer1049
viewsA: How to solve site publishing problem usitlizando IIS
On IIS find your application’s virtual directory, right-click on it, then click Convert to Application.
-
1
votes1
answer1049
viewsQ: How to solve site publishing problem usitlizando IIS
The site/system will be placed on the local computer for demonstration I posted the site on IIS to be used locally on the machine, only this returning me the error: Description: Error while…
-
3
votes1
answer116
viewsQ: Sending new value to all users via signIR
I need to make all users receive the updated values on their screens as soon as the function AutonavHub.client.printPackageInfoFloat(objeto) is called within $scope.adicionar = function (objeto)…
-
3
votes2
answers3386
viewsQ: How to call a nonstatic method within a static class?
I have the following method/function and need to call the method/function criaTimerTendencia that is within the class TagAnalogicaAtiva. private static void VerificaEnvioDeMensagensSignalR(object…
-
2
votes1
answer71
viewsQ: Codefirst Entity Framework database, 1-0.. 1, 1-N
I have 3 tables and need to relate them via code (Code First) I would like to know how to do this. I already have the following table codes: Tbhistoricoanalogic using System; using…
-
3
votes1
answer226
viewsQ: 5th step using jquery.smartWizard.js
I have the following form menu using jquery.smartWizard.js I need to insert the 5th step and I’m not getting it. How do I insert? Follow below the code of my screen. <!-- Tabs --> <div…
-
1
votes1
answer187
viewsQ: How to use Pnotify inside the angle
i have the following code and I want to use Pnotify to give notifications when the user and/or password is incorrect or/e white mandatory field. How do I? Remember that I am using Asp.net mvc and…
-
0
votes2
answers577
viewsQ: Pass Token by header to each Angularjs request (Authorization )
I have the file interface-Factory.js which is my factory app.factory('interfaceAPI', function ($http) { var _getInterface = function () { return $http.get("/api/interfaceapi/getall"); }; var…
-
2
votes2
answers42
viewsQ: Modifying my Isauthenticated value in Angularjs
When the token is different from null my Isauthenticated has to be positive, app.controller("HomeCtrl", function ($scope, $location) { let token = localStorage.getItem("token"); $scope.user =…
-
0
votes1
answer37
viewsQ: separating information that is in the string type in Angularjs
I have the following code: app.controller("LoginCtrl", function ($scope, LoginAPI) { $scope.doLogin = function (model) { if (model.username === undefined || model.password === undefined) { return…