Click here to Skip to main content
15,867,308 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Is it possible to store a value out of fetch API for use after page reload? Pin
jsc424-Oct-22 22:32
professionaljsc424-Oct-22 22:32 
QuestionXMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
DSB Audio (David Sweeney-Bear)3-Oct-22 10:42
DSB Audio (David Sweeney-Bear)3-Oct-22 10:42 
SuggestionRe: XMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
Richard Deeming3-Oct-22 21:40
mveRichard Deeming3-Oct-22 21:40 
GeneralRe: XMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
DSB Audio (David Sweeney-Bear)4-Oct-22 3:00
DSB Audio (David Sweeney-Bear)4-Oct-22 3:00 
GeneralRe: XMLHttpRequest behaves differently on static HTML page to Wordpress site Pin
Richard Deeming4-Oct-22 3:25
mveRichard Deeming4-Oct-22 3:25 
QuestionHow to build course Content page in Html Css Pin
Member 1577435021-Sep-22 2:02
Member 1577435021-Sep-22 2:02 
QuestionCoworking Pin
Member 1576609713-Sep-22 3:21
Member 1576609713-Sep-22 3:21 
AnswerRe: Coworking Pin
rareprob solutions31-Oct-22 0:09
rareprob solutions31-Oct-22 0:09 
AnswerRe: Coworking Pin
Member 159431856-Mar-23 2:57
Member 159431856-Mar-23 2:57 
AnswerRe: Coworking Pin
CHill606-Mar-23 3:01
mveCHill606-Mar-23 3:01 
QuestionASP.NET Webform to go live Pin
Shao Voon Wong7-Sep-22 0:18
mvaShao Voon Wong7-Sep-22 0:18 
AnswerRe: ASP.NET Webform to go live Pin
Richard Deeming7-Sep-22 0:50
mveRichard Deeming7-Sep-22 0:50 
QuestionWeb Development Pin
William Worse3-Sep-22 1:52
William Worse3-Sep-22 1:52 
AnswerRe: Web Development Pin
Richard MacCutchan3-Sep-22 2:58
mveRichard MacCutchan3-Sep-22 2:58 
AnswerRe: Web Development Pin
rareprob solutions18-Oct-22 1:33
rareprob solutions18-Oct-22 1:33 
QuestionHTML6 as a "living document" will that work? Pin
Member 150787168-Aug-22 14:35
Member 150787168-Aug-22 14:35 
QuestionFullscreen scrolling image and adding more images Pin
Member 157264913-Aug-22 6:33
Member 157264913-Aug-22 6:33 
QuestionHow to get saved data from option select in PHP? Pin
imbruceter1-Aug-22 0:36
imbruceter1-Aug-22 0:36 
AnswerRe: How to get saved data from option select in PHP? Pin
Richard MacCutchan1-Aug-22 1:03
mveRichard MacCutchan1-Aug-22 1:03 
GeneralRe: How to get saved data from option select in PHP? Pin
imbruceter1-Aug-22 1:27
imbruceter1-Aug-22 1:27 
GeneralRe: How to get saved data from option select in PHP? Pin
Richard MacCutchan1-Aug-22 1:29
mveRichard MacCutchan1-Aug-22 1:29 
GeneralRe: How to get saved data from option select in PHP? Pin
imbruceter1-Aug-22 1:37
imbruceter1-Aug-22 1:37 
AnswerRe: How to get saved data from option select in PHP? Pin
Sandrahdes1-Sep-22 21:06
Sandrahdes1-Sep-22 21:06 
QuestionASP.Net MVC : Send an array in POST Pin
hageshii26-Jul-22 3:39
hageshii26-Jul-22 3:39 
hello,

On my site in ASP.Net MVC, I try to send the contents of an array in a function using a POST but nothing happens and I don't understand why.

My class :

C#
public class AdresseIP
{
    public int? Idclient { get; set; }
    public int? ip1 { get; set; }
    public int? ip2 { get; set; }
    public int? ip3 { get; set; }
    public int? ip4 { get; set; }
    public int? idplan { get; set; }
}


My function (empty for the moment):

C#
[HttpPost]
    public ActionResult MAJIP(IEnumerable<AdresseIP> lst)

    {


        return View(1);
    }



The method I use to send the array from my page:

JavaScript
function Valider(tableID) {
    console.log("test " + tableID);
    var IPs = new Array();
    $("#" + tableID + " TBODY TR").each(function () {
        var row = $(this);
        var IP = {};
        IP.Idclient = row.find("TD").eq(0).text();
        IP.idplan = row.find("TD").eq(1).text();
        IP.ip1 = row.find("TD").eq(2).text();
        IP.ip2 = row.find("TD").eq(3).text();
        IP.ip3 = row.find("TD").eq(4).text();
        IP.ip4 = row.find("TD").eq(5).text();
        IPs.push(IP);

    });


console.log(JSON.parse(JSON.stringify(IPs)));
        IPs2 = JSON.parse(JSON.stringify(IPs));
        console.log(IPs2);


        $.ajax({
            type: "POST",
            url: "/IP/MAJIP/",
            data: IPs2,
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (r) {
                alert(r);
                if (r == 1) {
                    console.log('test1 ' + r)
                } else {
                    console.log('test2 ' + r);
                }

            }
        });
}


The console.log(IPs); displays the contents of the array correctly.

There may be better methods, but I don't know of any.

When I validate, my function receives a Null. Yet all my console.log(IPs); return the expected value.

So here I don't know.

Any idea please?
QuestionSelf Signed Cert Questions Pin
Kevin Marois23-Jul-22 19:03
professionalKevin Marois23-Jul-22 19:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.