4
Answers

Menu control's Item Click event??

NeCroFire

NeCroFire

16y
14k
1
Hi

I have a site with a menu control and a iFrame on it. When the user clicks on one of the menu items a different page loads in the iFrame.

I want to use the "Item Click" event of the Menu control to set a Session state variable so I can see what items was clicked, but it won't work. It's like the event is never executed before the new page is loaded in the iFrame.

How can I get the event to run before the new page is loaded?

Thanks
Answers (4)
0
Anna Hawks

Anna Hawks

NA 243 0 16y
Oops. Hit post too early. You could put some programming in the Pre-Init, too. That doesn't solve the null in the session variable, but it would fire before the page load.
0
Anna Hawks

Anna Hawks

NA 243 0 16y
I'm not familiar with I-frame, but some ideas that come to mind...
1. The last time I couldn't find a Session variable I was CERTAIN I had, I didn't have enable session state set to true.
2. Another thought is that it might not be set before the other event fires
3. Are you sure all the names that reference the Session variable are the same including capitol letters and exact spelling (I depend on Intellisense a LOT, so I'm forever mistyping the Session Variable names).
4. If all else fails, I would put some temporary variables and breakpoints in during debug to see when the Session Variable loses its value.

HTH
0
NeCroFire

NeCroFire

NA 86 0 16y
Well... there's nothing special about the code. Basically what I've done to test it is just set the menu item's NavigateURL, it's Target, and I added some text to it's Value property.

Then in the Item Cleck event I just add the Value to a Session variable. As soon as the other page loads I call the session variable to see if it actually added anything. Then the page complains about the Session Variable... "not set to an instance of an object...".

But if I try the same without the iFrame it works.


Why I want to di this:
I have a few pages in which my client's clients can fill in Details about the item they want to add to there insurance or Amend and item. The add and amend is almost the same and thus I want to try and use the same page for both. But I need to know what was clicked so that I know if the user wants to add or amend.

I hope it makes sense.

Thanks
0
Anna Hawks

Anna Hawks

NA 243 0 16y
Sounds like a coding error. You might post some relevant code so we can see what you're doing.