views:

17

answers:

1

I'm writing a web site (ASP.NET/C#) that is specifically targeted at mobile phones.

On the master page I have put an ASP menu. This works fine in IE8 and Firefox, but when I try viewing it from my Nokia browser, while the menu is visible, its behavior is incorrect: I tap on the menu to open it, and instead of opening the next level of menus, the control disappears altogether!

Interestingly, I got the same behavior using Chrome on my computer.

I haven't yet tried on Safari, but the message is already pretty clear: the ASP.NET menu control doesn't work on the Nokia browser, and that is a showstopper. What alternatives do I have? It needs to work on Nokia, Safari and Opera, at least.

I saw in a similar question that someone suggested writing a custom server control. Nice idea, I'm sure... but how do you explain that to this ASP.NET newbie?

A: 

It turns out that most browsers support Ajax, so I'm going to use Telerik's RadMenu.

Shaul