tags:

views:

21

answers:

0

I have a project (MVC/Asp.net) with a video player page. In my index page I create a link towards the player page as

href="<%=Url.Action("PlayVideo", "Search", new { videoid=result.ID }) %>"

The player page PlayVideo.aspx residing in the "Search" folder.

Once deployed, I click the link but I keep getting an error that the resource was not found. I checked the published folders and it does have the PlayVideo.aspx page.

Whats wrong?