I have no IT trainig but would appreciate some help. I am a volunteer that assist several non-profit organizations.
I have a dropdown box - code follows:
Using a hyperlink I am attempting to post the selection from the box to the URL on the page that follows - code follows:
The value of the ID post to the URL but the dropdown box doesn't. URL follows:
Can someone please help. Thanks Billie
I have a dropdown box - code follows:
Code:
<asp:DropDownList id="DropDownListcofc" runat="server" DataSourceID="AccessDataSource1" DataTextField="Certify" DataValueField="Certify" Height="16px"> </asp:DropDownList>
Code:
;<a href='http://www.gejfa.net/billie/guidingprinciples.aspx?ID=<%= Request.QueryString("ID") %>&CofC=<%= Request.Form("Certify") %>
The value of the ID post to the URL but the dropdown box doesn't. URL follows:
Code:
;<[http://www.gejfa.net/billie/guidingprinciples.aspx?ID=22&CofC=
Can someone please help. Thanks Billie
Comment