我正在使用ASP.NET的System.Web.Mobile命名空间开发移动Web应用程序。 我在使用带有错误消息的dotmobi模拟器进行测试时,使用Response.Redirect()重定向到不同的aspx页面时遇到问题:
无法加载请求的项目(状态代码502)
答案 0 :(得分:1)
尝试使用Server.Transfer而不是response.redirect。
答案 1 :(得分:0)
确保两个aspx页面都具有正确的内容类型集,例如:
<%@ Page ContentType="application/xhtml+xml" %>
以及:
Response.ContentType = "application/xhtml+xml"
答案 2 :(得分:0)