Posts by rcarubbi • 91 points
6 posts
-
1
votes1
answer266
viewsA: Text field does not take Asp.net MVC value
Do not disable control, set it to readonly and apply CSS styles to look disabled. Disabled fields are not posted. That’s why Defaultmodelbinder cannot fill the corresponding property of your model.…
-
1
votes1
answer544
viewsA: How to send information from a Javascript site to the NODE.js server
the verb get only recovers data from the server, you want to send data in the opposite direction, you must send via POST. On the Node you will need the following: Install the body-parser via npm…
-
0
votes1
answer82
viewsA: Integrating Formflow with Microsoft LUIS
Yes, it is possible. When constructing your Formflow, for all properties of your entity, configure the Field() method of formflow with the validated parameter and call a method that tries to extract…
-
1
votes1
answer40
viewsA: Script error to make a market list
Your creationList() function will never fill the list array because the list.length property is always zero once you’ve just created the array on the top line. <!DOCTYPE html> <head>…
javascriptanswered rcarubbi 91 -
0
votes1
answer44
viewsA: How to make a vertical ruler of orientation with the same number of imported text lines Vb.net
Use a For-Next flow control framework. The code inside the for-next block will run X times according to the number of lines found in the textbox1. And for each time it is executed, the variable…
-
3
votes1
answer839
viewsA: How to call a modal in the View from the Controller Actionresult
You can do this request via ajax and instead of returning the view in actionresult, return only one json indicating whether or not something like { success: true }. and at ajax return show the modal…