Forum Moderators: DixonJones
it works like this.
your on page a.aspx you want to go to page b.aspx instead of going <a href="b.aspx"> i use this
<a href="go.aspx?src=a.aspx&dst=b.aspx">
this allows a to go to GO.aspx (logging everthing there) then GO.aspx directs the user to whatever page was specified in the dest variable (in this case b.aspx)
hth,
mcm