Hi Dave,
Thanks for the quick response.
In MMIT, we can find a class named MobileCapabilities. In this class, we
can find one property named IsMobileDevice. I think it can be used. Also,
we can use like:
This following example demonstrates the use of Browser property of
MobileCapability class.
public void Page_Load(Object sender, EventArgs e)
{
MobileCapabilities currentCapabilities
= (MobileCapabilities)Request.Browser;
if (currentCapabilities.Browser !="IE")
{
lblNotice.Text = "Best viewed with Internet Explorer";
}
}
For blackberry emulator, I think there should be also some monitor tool so
that you can watch the http request header fields. The above Browser
property is inherited from the System.Web.HttpBrowserCapabilities class.
Example values include: Pocket IE, Microsoft Explorer, Nokia, Phone.com,
Ericsson, and i-mode. I think we can differ them by these values.
Does that answer your question?
Best regards,
Yanhong Huang
Microsoft Community Support
Get Secure! ¨C
www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.