# HTTP Response Node Page

**URL:** https://discourse.nodered.org/t/http-response-node-page/4623
**Category:** Dashboard
**Created:** [7 November 2018 00:04 UTC](https://discourse.nodered.org/t/http-response-node-page/4623 "2018-11-07T00:04:03Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![rerrico](https://avatars.discourse-cdn.com/v4/letter/r/7cd45c/32.png) [@rerrico](https://discourse.nodered.org/u/rerrico)
#### Post date: [7 November 2018 00:04 UTC](https://discourse.nodered.org/t/http-response-node-page/4623/1 "2018-11-07T00:04:03Z")

</div>

I have two buttons on a Dashboard, one to select a file and one to upload it. That part works fine, but I would like to find a way to not go to a new page where the the msg payload is displayed (in this case the path and file uploaded and a Success or Fail message) after the POST method. Is there any way to stay on the dashboard and not have to hit the back button to go back to the Dashboard?

---

<div class="post-metadata">

### Author: ![dceejay](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/dceejay/32/38_2.png) [@dceejay](https://discourse.nodered.org/u/dceejay)
#### Post date: [7 November 2018 00:08 UTC](https://discourse.nodered.org/t/http-response-node-page/4623/2 "2018-11-07T00:08:46Z")

</div>

I think whatever is receiving your post needs to respond with something like a 304 return code.

---

<div class="post-metadata">

### Author: ![shrickus](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/shrickus/32/517_2.png) [@shrickus](https://discourse.nodered.org/u/shrickus)
#### Post date: [7 November 2018 04:49 UTC](https://discourse.nodered.org/t/http-response-node-page/4623/3 "2018-11-07T04:49:51Z")

</div>

> [@rerrico](#):
>
> Is there any way to stay on the dashboard and not have to hit the back button to go back to the Dashboard?

Yes -- you just need to return a 204 "No Content" http status code from the `http response` node at the end of your flow. The browser will interpret this as a good response, without changing the page that is currently shown.

---

<div class="post-metadata">

### Author: ![rerrico](https://avatars.discourse-cdn.com/v4/letter/r/7cd45c/32.png) [@rerrico](https://discourse.nodered.org/u/rerrico)
#### Post date: [7 November 2018 13:57 UTC](https://discourse.nodered.org/t/http-response-node-page/4623/4 "2018-11-07T13:57:58Z")

</div>

Thanks guys! Worked perfectly and easily implemented.
