I have created web application in MVC 3 and I have uploaded it to server..
Problem is this I created virtual directory and upload my project in this virtual directory its url is like this
www.snowads.com/snow
So where I use @Html.ActionLink("Register", "Create", "User")
its creating link like this
www.snowads.com/User/Create
but I want it should include virtual directory name
www.snowads.com/snow/User/Create
how can I do this ?