vijayst
vijayst

Reputation: 21846

Using a bookmark in URL in asp.net mvc web page does not work

I am navigating to a page with bookmark - http://www.makemeok.com/ncr/palam-colony-hospitals/singhal-hospital-jabfc#description

The page is templated using ASP.NET MVC Razor engine.

The bookmark - description exists on the page. But, the page does not scroll down to the bookmark on document load. Any reasons why the bookmark is not working?

<a id="description" name="description"></a>

Upvotes: 0

Views: 867

Answers (1)

teo van kot
teo van kot

Reputation: 12491

I checked your page, that situated on link.

You have 2 a tags with id and name with value description.

That's why it's not working. Just change one of them to

<a id="description2" name="description2">...</a>

And everything will work.

Upvotes: 1

Related Questions