I have a menu of report links in my master page. I need to append an ID to the end of each whenever the user changes a value on the child page. What’s a good way to accomplish this?
UPDATE: I should have mentioned that the child update is happening inside an UpdatePanel, meaning the master page is not reloaded when the change happens.
In response to your UPDATE:
The updated panel could write the ID to a hidden field and the menu events could look for that hidden fields in
Request.Form['fieldName'].Note that you shouldn’t
fieldName.Textbecause ASP.NET does a bad job of returning the right value for fields that have been AJAXed.