Posts by Eduardo • 253 points
6 posts
-
1
votes1
answer814
viewsQ: Calling methods in controller class (Asp.net web.api) to work when changing parameter name
I have a question regarding the use of the Asp.net web api with Angularjs that follows below. I have 2 methods in my controller class (Itenscontroller.Cs): public void Put(int id, [FromBody]Item…
-
1
votes1
answer132
viewsA: Kendoui stops working by separating Angularjs into a file . js
I found the mistake (and it was very simple actually). I forgot to add the controller to the module. When everything was on the page (module and controller). When I decided to switch to a separate .…
-
0
votes1
answer132
viewsQ: Kendoui stops working by separating Angularjs into a file . js
I am trying to create a simple project of Kendoui + Angularjs. When I use the code below, everything works normal: <!DOCTYPE html> <head> <title>AngularJS</title> <meta…
-
8
votes1
answer1309
viewsQ: Work with Angularjs in master page Asp.net
I’m involved with the Angularjs these days, so in this learning phase, I came up with a question. How I work with Angularjs on Asp.net pages that have a master page? For example, I realized that the…
-
3
votes1
answer431
viewsA: Insert web api class into existing web project
My mistake was in not placing the subfolder (View) of my aspx.Cs file on the routeTemplate. My method should stay like this: void Application_Start(object sender, EventArgs e) {…
-
2
votes1
answer431
viewsQ: Insert web api class into existing web project
In my visual studio 2012, I have a solution with several projects and one of them is web. In this project, I would like to include a "Web Api Controller" class to do some tests. I created a class…