0
私はVS 2008を使用して簡単なasp.netモバイルウェブページを作成しました。基本的に私はsystem.web.mobileを使用しています。ページは、iPhone、Windowsの電話で正常に動作します。しかし、アンドロイドで私は利用できないページエラーを受け取りました。アンドロイドのために変更する必要のある設定はありますか?ここに私のフォームですASP.Netモバイルウェブページがアンドロイドで動作していません
<%@ Register TagPrefix="mobile" Assembly="System.Web.Mobile" Namespace="System.Web.UI.MobileControls" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:Label id="Label1" runat="server" Text="Please select an item to view" />
<mobile:SelectionList runat="server"
id="SelList1" OnSelectedIndexChanged="SelList1_SelectedIndexChanged" />
<mobile:Command id="Command2" runat="server"
Text=" Hit Enter to view the details " />
Name: <mobile:Label id="lblName" runat="server" />
Description : <mobile:Label id="lblDesc" runat="server" />
<mobile:Command id="Command1" runat="server"
Text=" OK " />
</mobile:form>
</body>
</html>
私はHTML 5を試しましたが、引き続き同じエラーが発生しました。 – Srividhya
IISログにはどのようなエラーが表示されますか? – mgnoonan