Dear all
I want to know url of View from another controller. The following is structure
Controller
Home
Account
View
Home\Index.aspx
Account\Login.aspx
Now, I want to goto Index view of controller Home from view Login of controller Account
I know I can use method this.RediectToAction("Index", "Home") to do it but I don't want to method. It will fail to redirect when view or controller renamed.
Please help