i have a requirement in which i need to edit a live asp.net mvc site, same like a sharepoint site.
In sharepoint i have an edit option where the content will be displayed in HTML Form, where i can change the content and save it.
In same manner i need to do it on an asp.net mvc site.
is there any option accross to do this?
Pretty normal situation, you just want to have the content stored in a database instead of hard coded on the page. You would then setup the MVC Controller to read the database values and pass it to the View which would present it as html content. What you would need for support is an edit button on the view which would go to the edit view and edit action, which would present the user an html textbox in which to edit the content.
The most comment html textbox you will see is FreeTextBox.