AsyncWebServer multiple submit button at same form

Hi!

With ESPAsyncWebServer.h (GitHub - me-no-dev/ESPAsyncWebServer: Async Web Server for ESP8266 and ESP32)'s server.on("/", HTTP_POST, [](AsyncWebServerRequest *request), how can I find out which of two submit buttons, in the same form, created a post request?

Thank's in advance.

You cannot if you don't take care for that in the form. The easiest way is not to use submit buttons but simple buttons and react on them using Javascript.