1

Can I somehow redirect or reload the page without an entry in the back button queue (or history.back() in JS)?

Currently, I'm using "RedirectToAction()" as the return value for a Post to save data.

    public virtual ActionResult NotizAktualisieren(long id, string notiz)
    {
        var data = Client.Get<TestlaufAusfuehrung>(id);

        data.Notiz = notiz;

        Client.Put(data);

        return RedirectToAction(nameof(Ergebnisse), new { id });
    }

Firefox seems to automatically ignore same entries, what can I do for chrome?

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.