I have a HyperLink control in a ListView, and I need to pass a couple of querystring parameters.
<asp:HyperLink ID="HyperLink" runat="server" NavigateUrl='<%# string.Format("Page.aspx?Param1={0}", Server.UrlEncode(Container.DataItem.ToString())) %>'
Text='<%# Container.DataItem %>' />
The first parameter is based on the current DataItem value in the LV.
Suppose I want to set a second parameter with a value from Selected.Item.Text in a DropDownList on the same page, how would the HyperLink look?
I've spent too much time on this, so I need some help...
Thnx...