How to make fields read-only on update
2 answers
Depends on what you mean "after filling out the form".
If this post is in html form, just render a new html page with plain text and values of the submitted form.
If the post-back was an ajax call, you can change the CSS style of the elements, for example and disable the submit button or erase the integer and replace the values returned by the ajax request.
There is no "editable = False" property for btw html input elements.
0
a source to share