In this example I will show you how to bind viewbag value to an html control using jQuery in mvc.
Example:
Step 1: Right click on the "Controllers" folder and add "Home" controller. Copy and paste the following code.
public ActionResult Index()
{
ViewBag.Message = "hello I used JQuery";
return View();
}
Step 2: Right click on the "Index" action method in the "HomeController" and add "Index" view. Copy and paste the following code.
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#txtMessage").val('@ViewBag.Message');
});
</script>
<h2>can we bind viewbag to htmlcontrol using jquery</h2>
<input type="text" id="txtMessage" />
<br />
it is working fine.
<br />
Description:
Here, I have assigned a message to the viewbag variable and create a text box and assign id as txtMessage and set viewbag in jQuery using asp.net razor view. While running the application, on the pageLoad, the string message is binding on the textbox.
Output:
Video
Post your comments / questions
Recent Article
- How to check PAN-Aadhaar is Linked or NOT?
- How to customize pagination for django admin?
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
Related Article