在我的网页中,我使用Response.Redirect将用户重定向到另一个页面。 我使用的是ASP vb.net,尝试重定向时出现此错误:
First exception of type 'System.Web.HttpException' in System.Web.dll
你知道怎么了吗?
谢谢。
这是我的代码:
<AjaxPro.AjaxMethod(HttpSessionStateRequirement.ReadWrite)>
Public Sub respuestaPeti(ByVal address As String, ByVal floor As String)
Dim res As String
res = pasarPeticion(address, floor)
Try
If res = "OK" Then
Response.Redirect("https://www.google.es/")
End If
If res = "NO_OK" Then
Response.Redirect("https://www.google.es/")
End If
If res = "OK_DIRMAL" Then
Response.Redirect("https://www.google.es/")
End If
Catch ex As Exception
End Try
End Sub
答案 0 :(得分:0)
尝试使用以下代码重定向URL。
Response.Redirect(URL,false)