Thanks bol, will try it now and feedback to you.
Main Topics
Browse All TopicsHi
I'm making a dynamic audio player that loads a track after a series of menus (forms).
On the last page I'm (well I think I am) setting a session variable from a form value like this:
<% Session("bandvariable") = Request.Form("frmband") %>
The session variable is used in a recordset on a dynamic xml page that selects the stored mp3 path from the database which is then loaded into a flash player.
This all seems to work fine in Mozilla Firefox - but in Internet explorer the value of the session variable sticks - as in it always plays the same track.....
Should I be doing something to reset the session variable, or maybe I'm not setting it correctly in the first place.....or maybe there is another way to get and uise that value into the xml form.
Not sure if I should add the full code here as I think I may just need some advice - but will load it up if needed.
Thanks for your input in advance
Dave
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Aggh this is crazy. I have used the abandon session and various other combinations (abandon content etc) and still the same issue. Works fine in Mozilla but in IE the variable sticks.
The player works like this:
page1: Select school (from database) passes frmschool value to -
page 2: select term (selects valid terms based on Request.Form("frmschool") passes frmterm and hidden field frmschool to -
page3: Select band (based on term and school) passes frmband value to -
Playit.asp which has two flash movies. one purely graphic, like a screen saver and a flash player that plays the track. At the top of this page I have <%Session("BandID")=Reques
The track for the player is supplied by another page - playlist_xml.asp which uses the session("BandID") to get the track link (whateversong.mp3) from the database and the dynamic variable of this is precceded with htp://www.blabla to create the link for the mp3 file for the player....
Phew hope that makes some sense?
On the FIRST page of the chain I have added <% Session.Contents.Remove("B
This is all working fine just not in IE7.......
Not sure how helpfull posting the pages will be but if I post the dynamic xml page It may help shed some light. The other ages are simple forms in a chain.
The only hunch I have is if the dynamic xml page isn't active somehow..although it seems to be in Mozilla
Thanks - I'm getting desperate now
Dave
A few things to check:
You've checked browser security settings and cookies are allowed, correct?
Does your host name have an underscore in it?
Have you tried adding the domain in question to your trusted sites?
Have you tried using a client side cookie rather than a session variable?
Take a look here:
http://search.msdn.microso
Good job on the solution and thanks for posting it. If you haven't already figured out how to "mark it as solved" or have this closed then you just need to click on the Delete Question link. It should be visible to you in the question body by the Translate select list. Click it to let a moderator know. In the box where you can enter some info you should note that you solved this yourself and ask for PAQ/refund. A moderator will respond by posting here and within a few days it will be closed.
Let me know if you have a question about doing this. I'm glad it is solved.
bol
Business Accounts
Answer for Membership
by: b0lsc0ttPosted on 2008-01-22 at 22:18:26ID: 20721170
I am not real clear on what is going on still but my first recommendation would be to try ending the session manually. Is that an option? For example after you start to play the song?
This can be done with ...
Session.Abandon
That line will immediately get rid of the Session variables and reset them. If that won't work then you may need to test values a little more. Please clarify how you go back to the page. Let me know if you have a question.
bol