Cookieless Sessions...

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Cookieless Sessions...

    Hi,


    The URL I'm trying to access
    [url]http://SERVER/VirtualDir/app/test.aspx[/url]
    This page has a lot of links and also images and CSS
    from the following folder structure.

    [url]http://SERVER/VirtualDir/images/image.gif[/url]
    [url]http://SERVER/VirtualDir/styles/Style.css[/url]

    I refer to images from test.aspx in the page as IMG
    SRC=../images/test.gif

    I am trying to test my application with the "Cookieless=true"
    parameter in the Session Configuration in the Web.Config file.

    I am having some issues with Images/CSS files in my document when
    I turn on the CookieLess=true. They don't seem to be able to get the
    image based on the relative location.

    Is there any fix for this?


    Thanks in Advance,
    JV
    JV Guest

  2. Similar Questions and Discussions

    1. cookieless session? Who has it working?
      I experimented/researched cookieless sessions and tried it on my website. I expected the switch to cookieless sessions to be transparent but this...
    2. Ending sessions when running in cookieless mode?
      Hi. I have an app that is running cookieless. (ie <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424"...
    3. Cookieless ASP Sessions
      Hi, I really need to use cookieless ASP sessions with ASP 3 (IIS5) Can I find out the session ID from the first page, then post it or send it...
    4. Cookieless session problems
      Hello, we are having problems displaying non-aspx files (images, style sheets) since we have upgraded to the 1.1 framework when using a...
  3. #2

    Default Cookieless Sessions...

    Hi guys!

    Yes... 8-(
    I'm having the same problems as you guys.

    Scott, following your "directions" I put a .aspx page
    inside my images' folder and it works fine.
    I guess you're right... IIS do NOT think.

    Please, keep me in the loop about a solution for this
    problem.

    I'll keep you guys informed if I find one.

    Thx

    >-----Original Message-----
    >Hi,
    >
    >
    > The URL I'm trying to access
    >[url]http://SERVER/VirtualDir/app/test.aspx[/url]
    >This page has a lot of links and also images and CSS
    >from the following folder structure.
    >
    >[url]http://SERVER/VirtualDir/images/image.gif[/url]
    >[url]http://SERVER/VirtualDir/styles/Style.css[/url]
    >
    > I refer to images from test.aspx in the page as IMG
    >SRC=../images/test.gif
    >
    > I am trying to test my application with
    the "Cookieless=true"
    >parameter in the Session Configuration in the Web.Config
    file.
    >
    > I am having some issues with Images/CSS files in my
    document when
    >I turn on the CookieLess=true. They don't seem to be
    able to get the
    >image based on the relative location.
    >
    > Is there any fix for this?
    >
    >
    >Thanks in Advance,
    >JV
    >.
    >
    uirapuru Guest

  4. #3

    Default Re: Cookieless Sessions...

    problems displaying images, style sheets using cookieless session
    (sessionID in the url) - cookieless session broken images.

    Finally... I found the answer! at least in my case.
    Hope this helps!
    Check your isapi filters in iis. Make sure ASP.net is included and
    running. Here's how.

    open internet services manager
    right clik on the server node and choose properties
    master properties <edit>
    (tab) isapi flters
    look for an entry "ASP.NET_x.xx.x.x.x"
    if it is not there, this is your problem!

    <add> ASP.Net
    C:\WINNT\Microsoft.NET\Framework\v1.0.3705\aspnet_ filter.dll

    the above value is for 1.0.3705
    you should use whichever version you are running.
    restart iis


    [email]j_v@lycos.com[/email] (JV) wrote in message news:<301e96ce.0307221417.77e9e20c@posting.google. com>...
    > Hi,
    >
    >
    > The URL I'm trying to access
    > [url]http://SERVER/VirtualDir/app/test.aspx[/url]
    > This page has a lot of links and also images and CSS
    > from the following folder structure.
    >
    > [url]http://SERVER/VirtualDir/images/image.gif[/url]
    > [url]http://SERVER/VirtualDir/styles/Style.css[/url]
    >
    > I refer to images from test.aspx in the page as IMG
    > SRC=../images/test.gif
    >
    > I am trying to test my application with the "Cookieless=true"
    > parameter in the Session Configuration in the Web.Config file.
    >
    > I am having some issues with Images/CSS files in my document when
    > I turn on the CookieLess=true. They don't seem to be able to get the
    > image based on the relative location.
    >
    > Is there any fix for this?
    >
    >
    > Thanks in Advance,
    > JV
    levous Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139