I have a page that have data type but it can be optional

I have a form on a page that is used to add and edit some data in database. What I am doing is the form page has type of let’s say DATA. I am sending DATA to it when editing but not when adding so, how to send empty DATA to the page

Consider using url parameters instead of designating that page’s content type

2 Likes

Thank you very much for your response, the thing is it’s not that simple, I mean there are lots of values to be passed if I use URL parameters

You cannot send empty data to a page with a content Type. As suggested you will have to use URL parameters.

1 Like

Thank you, I figured out how to use URl parameters properly

1 Like