Help needed on navigate back 1 or 2 pages script.

A

Assimalyst

Hi,

I have a situation where users enter data, then on completion are
directed to successful.aspx. On this page i essentially want two links,
one to go to homepage, the other to link back one or two pages add
another similar set of data.

This successful.aspx webpage is shared by a number of webforms, but
some data entry procedures use one webform only, some require two
webforms. In these instance i want to navigate back to the first
webform.

I think the code i need is along the lines of (yes you spotted it, I'm
a newbie!!):

function BackClick()
{
if(previous webform = wf1.aspx or wf2.aspx)
{
history.back(2)
}
else
{
history.back(1)
}
}

But being a newbie i'm not sure of the syntax required to properly
invoke the if statement. Could anyone enlighten me? Or indeed offer any
better solutions.

Thanks.
 
N

nikki

Assimalyst said:
I have a situation where users enter data, then on completion are
directed to successful.aspx. On this page i essentially want two links,
one to go to homepage, the other to link back one or two pages add
another similar set of data.

This successful.aspx webpage is shared by a number of webforms, but
some data entry procedures use one webform only, some require two
webforms. In these instance i want to navigate back to the first
webform.

You're using ASP.NET.
Don't use javascript for this.
Save something in ViewState that indicates which web form they used,
then check that later and dynamically set Hyperlink URL based on it.

Way easier than trying to save what they did in cookies and determine
what to do based on it, and all that jazz, which is what you would
basically need to do with just client-side JS.
 

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

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top