I have a user control defined in my master page at the very end "TrackingModule1" which reads data from checkout cookie and creates javascript code that gets rendering onto the page [ViewSource]. I have a checkout.aspx content page containing asp.net wizard control in which I set values to this checkout cookie as user steps through the checkout in wizard control.

Now the problem! When user clicks Continue to proceed to the next step, the tracking control in the master page executes before the OnNext event of the wizard control in which I set the cookie values to be read by the tracking control. The outcome! The rendered javascript in tracking control has empty values for that wizard step as the values were set after the tracking control executed.

I have tried googling it but found no close results. I hope I am not the first to have encountered this issue. Please help!

Thanks.

link|improve this question

27% accept rate
On which event in your user control you write the values of the cookie? Did you try some later event or even the Render method (though I'm not sure if you can add cookies when you are already rendering)? – Ivancho Feb 23 at 16:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.