MVC ActionLink

Posted by Community Admin on 04-Aug-2018 12:36

MVC ActionLink

All Replies

Posted by Community Admin on 13-Oct-2015 00:00

Hi guys. Recently I have faced with interesting problem with MVC widgets. The Url that generated by Html.ActionLink() is incorrect.
 Here is my action in controller 

 

[HttpGet]
public ActionResult Delete(string id)
    if (!string.IsNullOrEmpty(id))
    
        // DELETE ITEM
    
 
    return this.Index();

 

 And here is my actionLink in View 

 

@Html.ActionLink("Remove", "Delete", new id = item.Id, new @class = "btn btn-danger", type = "button" )

 

But as a result I get this link:

/itefinity/Administration/Synchronization/MySync/Delete/11222/

And it is incorrect 

I have to get this link

/Sitefinity/Administration/Synchronization/MySync/Delete/11222/

 Please help me. I don't know what am I doing wrong. 

Best regards, Andrew

Posted by Community Admin on 16-Oct-2015 00:00

Hello,

This is currently a bug in Sitefinity. You can find it here and vote for it to increase its priority.

Regards,
Velizar Bishurov
Telerik

 
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Sitefinity CMS Ideas&Feedback Portal and vote to affect the priority of the items
 

Posted by Community Admin on 12-May-2017 00:00

Issue tracker says the bug is fixed. From which Sitefinity version the fix is included. Feather version mentioned v1.4.390.0

Posted by Community Admin on 12-May-2017 00:00

Feather version v1.4.390.0 is working with Sitefinity  8.2

This thread is closed