Suggestions on how to implement complaint form in Blazor server app?

I have a Blazor server app running through IIS Express. Clients on the same network access it on their devices through the local host address.

In my app, I'd like to have a page with a 2 column table where clients write a short complaint in the first column and I'm able to write response in the second column. Obviously this data will be lost whenever the server or IIS Express needs to be restarted for whatever reason.

What is the simplest solution to have something like this work? I have zero knowledge regarding backend development. Should I set up an SQL database on the server? Any recommended tutorials would be highly appreciated.

Yes, you need to use a database for this case. I recommend checking @Benjamin_Fadina 's tutorials: Profile - Benjamin_Fadina - Radzen

1 Like