• ylinxy
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi,

I am building an application using Custom Tab that links to pages outside of salesforce. Since custom tab is converted to iframe in appexchange, session is lost when redirecting to another page.

The basic flow is like this:
Click the custome tab in appexchange and that will go to a process page and the proess page load info from db and set session values for a user. After that it is redirected to another page, in which the session values set in the process page are lost.

I tried the solution that Dave posted by-changing cookieless to true in web.config and use response.Redirect(url, false). This doesn't work at all because in ASP(not asp.net), response.Redirect() accepts only one argument.

I tried change ie cookie settings to always accept session cookie. This works fine, but it is not an acceptable solution.

Is there any other solution?
Hi,

I am building an application using Custom Tab that links to pages outside of salesforce. Since custom tab is converted to iframe in appexchange, session is lost when redirecting to another page.

The basic flow is like this:
Click the custome tab in appexchange and that will go to a process page and the proess page load info from db and set session values for a user. After that it is redirected to another page, in which the session values set in the process page are lost.

I tried the solution that Dave posted by-changing cookieless to true in web.config and use response.Redirect(url, false). This doesn't work at all because in ASP(not asp.net), response.Redirect() accepts only one argument.

I tried change ie cookie settings to always accept session cookie. This works fine, but it is not an acceptable solution.

Is there any other solution?