asp.net MVC

set viewbag in jquery

set viewbag in jquery, someone asked me to explain?

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:

set viewbag in jquery

Video

Post your comments / questions