i am working on mvc dot net, and i have one button and when i clicked on this button i want to display one popup box with textarea and text of text area will insert on db. this all working with MVC razor.
like this..my code on this URL
i am working on mvc dot net, and i have one button and when i clicked on this button i want to display one popup box with textarea and text of text area will insert on db. this all working with MVC razor.
like this..my code on this URL
See this code for jquery ui dialog box https://jqueryui.com/dialog/#default
You will have to create a dialog like so and submit your value via ajax:
Alternatively, you could put your text area in a Razor form and just submit the page on submit which would post it to a regular MVC action like you would regularly.