creo due HtmlInputHidden con diverso id ma stesso name.
Purtroppo asp.net si rifiuta di accettare il mio codice, dato che il name lo sceglie lui. Sapete aiutarmi a risolvere?
codice:
        Dim h As HtmlInputHidden

        h = New HtmlInputHidden
        h.ID = "h1"
        h.Name = "h"
        h.Attributes.Add("name", "h")

        Me.PlaceHolder1.Controls.Add(h)

        h = New HtmlInputHidden
        h.ID = "h2"
        h.Name = "h"
        h.Attributes.Add("name", "h")

        Me.PlaceHolder1.Controls.Add(h)