Answer 8
Sorry, I feel I'm doing a bad job asking the right questions (or I'm just not fully understanding the solution provided). It is probably because I'm new to development, ASP.NET, and to dealing with code.
Here is my best shot at restating my need.
When a user selects an ID, I see it in the Project ID field (code above from yesterday), however I don't know what part of the code represents the variable, how to grab that variable value from the SP code (based on what was selected on the page), or
what syntax to use to construct the URL with the variable as part of it.
I've tried entering various combinations (in code view) that did not work:
<a href=http://myURL.aspx?ID={@ID}>
<a href=http://myURL.aspx?ID={@Title}>
<a href=http://myURL.aspx?ID= + xsl:value-of select="@Title">
So I'm obviously doing something wrong. I don't know how/where to get the selected project ID value, or how to put it in the URL of the button, so that the selected value will be passed to the target page.
Please help, and thanks again.