If you use Asp.Net Menu control, you will see sometimes or most of the times, it doesn't work on Chrome.

For solve this problem follow these steps:

1. 1. In Solution Explorer Right click on your App and Click “Add ASP.NET Folder” and then select App_Browsers.

2. 2. Add Chrome.browser file in App_Browsers folder. As in the image below.

BlogImage1.jpg

3. 3. Open Chrome.browser file and write this code

<browsers>

<browser refID="Safari1Plus">

<controlAdapters>

<adapter controlType="System.Web.UI.WebControls.Menu"

adapterType="" />

</controlAdapters>

</browser>

</browsers>

Now your implemented Asp.Net Menu control also work in Chrome browser.