A
Alexander Malapheev
Hi,
I have an asp.net application which has a button to launch ClickOnce
application.
This button open a new page which make redirect to ClickOnce app, something
like this:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load
Dim strGUID As String =
HttpContext.Current.Request.Cookies("SomeCookie")("GUID")
Response.Redirect("myapp.application?id=" & strGUID)
End Sub
All works on XP, but on vista this application not launched. Instead of it a
new window of IE7 (with URL to this app in address bar) is opened. When I
try to refres (F5) this window - it's hapend nothing. But when I click to
address bar and push enter button then ClickOnce application is launching.
How can I solve this?
I have an asp.net application which has a button to launch ClickOnce
application.
This button open a new page which make redirect to ClickOnce app, something
like this:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load
Dim strGUID As String =
HttpContext.Current.Request.Cookies("SomeCookie")("GUID")
Response.Redirect("myapp.application?id=" & strGUID)
End Sub
All works on XP, but on vista this application not launched. Instead of it a
new window of IE7 (with URL to this app in address bar) is opened. When I
try to refres (F5) this window - it's hapend nothing. But when I click to
address bar and push enter button then ClickOnce application is launching.
How can I solve this?