c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
asp.net MVC

set viewbag in jquery

| | JQuery , MVC

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