开发者

Response.Redirect() in mobile ASP.NET application

开发者 https://www.devze.com 2023-01-13 18:41 出处:网络
I am 开发者_运维技巧developing a mobile web application using System.Web.Mobile namespace of ASP.NET.

I am 开发者_运维技巧developing a mobile web application using System.Web.Mobile namespace of ASP.NET. I am facing problem with redirect to a different aspx page using Response.Redirect() while testing with dotmobi emulators with the error message:

The requested item could not be loaded (status code 502)


Try using Server.Transfer istead of response.redirect.


Make sure both aspx pages have the correct content-type set, e.g:

<%@ Page ContentType="application/xhtml+xml" %>

As well as:

Response.ContentType = "application/xhtml+xml"


Status code 502: The server was acting as a gateway or proxy and received an invalid response from the upstream server.

Reference: Wikipedia

Is the destination page within your website? Does it contain calls to external services / other servers?

0

精彩评论

暂无评论...
验证码 换一张
取 消