ClickOnce and Vista problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alexander Malapheev

    ClickOnce and Vista problem

    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?

  • Luke Zhang [MSFT]

    #2
    RE: ClickOnce and Vista problem

    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.Redire ct(), what will happen?

    Sincerely,

    Luke Zhang

    Microsoft Online Community Support
    =============== =============== =============== =====
    Get notification to my posts through email? Please refer to
    Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

    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/subscripti...t/default.aspx.
    =============== =============== =============== =====

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



    Comment

    Working...