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
- Import "django.shortcuts" could not be resolved from source in Django Project
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
Related Article