ClickOnce and Vista problem

  • Thread starter Alexander Malapheev
  • Start date
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, 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?
 
L

Luke Zhang [MSFT]

Hello,

As I understand, you just test the application on the web server (Vista)?
If you connect from another client (also Vista), will you get same result?
Also, from your first message, if you type the url of the ClickOnce
application in IE directly, it will work correctly, is this right? If you
use Server.Transfer() method instead Response.Redirect(), what will happen?

Sincerely,

Luke Zhang

Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top