Skip to content
Loading
link is not work inside the card  
  when i am clicking the link i am successfully navigating to google.
  • Mageshwaran R
    Hi Rahul,
    I'm Solved Your Problem,please try this code:
    Razor Page:
    1. <div>  
    2. @{  
    3. ViewBag.link = Html.ActionLink("Service", "Service","Home");  
    4. }  
    5.   
    6. @Html.Raw(ViewBag.link)  
    7. div>  
    Controller:
    1. ViewBag.link = "https://localhost:44349/Home/Service";