Are there other ways I can return raw html from controller? As opposed to just using viewbag. like below:
public class HomeController : Controller { publ
Give a try to return bootstrap alert message, this worked for me
return Content(" ×Thanks! updated successfully");
Note: Don't forget to add bootstrap css and js in your view page
css
js
hope helps someone.