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.EventArg s)
Handles Me.Load
Dim strGUID As String =
HttpContext.Cur rent.Request.Co okies("SomeCook ie")("GUID")
Response.Redire ct("myapp.appli cation?id=" & strGUID, True)
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 I can 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.EventArg s)
Handles Me.Load
Dim strGUID As String =
HttpContext.Cur rent.Request.Co okies("SomeCook ie")("GUID")
Response.Redire ct("myapp.appli cation?id=" & strGUID, True)
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 I can solve this?
Comment