I am trying to move on service page using viewbag link
I get a viewbag text successfully but not get the link
HomeController.cs
- [HttpGet]
- public ActionResult Service()
- {
- ViewBag.text = this.ControllerContext.RouteData.Values["action"].ToString();
- ViewBag.link = "https://localhost:44349/Home/Service";
- return View();
- }
Service.cshtml
- <a style="color:black;" href="@ViewBag.link">@ViewBag.text</a>
-
- <div class="card" style="width: 80rem;margin-top:120px;margin-left:120px;">
-
- <div class="row">
- <div class="card-img-overlay d-flex">
- <img src="~/Graphics/homeiconservicepage.svg" style="width:25px;height:25px;" />
- <a style="color:white;" href="@ViewBag.link">@ViewBag.text</a>
- </div>
see the console log view page source:
help