HyperLink Paramter QueryString

G

Gregor Vohl

I want to make an EditForm Button. The problem is I have no idea how to set
HyperLink QueryString Parameter so that single choice from List would have
his on ID.


EditForm.aspx?ID=
what must I write behind = to get Item ID on which in click

Thx, Gregor
 
J

Jon Spivey

Hi,

In asp.net you'd usually use a dropdown
<asp:DropDownList ID="DropDownList1" runat="server">
' your choices
</asp:DropDownList>
Then retrieve with
dim s as string = DropDownList1.SelectedValue
if you want to do it the "old fashioned" way you'd have
dim s as string = request.form("DropDown")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top